Commit 3e2b1093 by Nicolas Capens Committed by Nicolas Capens

Fix pedantic Linux warning treated as error.

Unused variable 'entry'. Change-Id: I115b7d599d871c0f130f72e32618a8ed29776b81 Reviewed-on: https://swiftshader-review.googlesource.com/13468Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarNicolas Capens <nicolascapens@google.com>
parent 13d16092
...@@ -205,7 +205,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) ...@@ -205,7 +205,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
sw::Routine *routine = program(L"VertexRoutine"); sw::Routine *routine = program(L"VertexRoutine");
assert(routine); assert(routine);
const void *entry = routine->getEntry(); const void *entry = routine->getEntry();
assert(entry); assert(entry); (void)entry;
delete routine; delete routine;
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment