Commit 8d269bac by Ben Clayton

Fix build of tests/fuzzers.

VertexRoutineFuzzer.cpp was not updated as part of 6897e9b1. Fixes Chromium roller. Bug: b/137524292 Bug: b/137649247 Change-Id: I494ae1b6af07326013778251852816b5783666c4 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/34451 Presubmit-Ready: Ben Clayton <bclayton@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarBen Clayton <bclayton@google.com>
parent 6897e9b1
...@@ -207,7 +207,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) ...@@ -207,7 +207,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
assert(routine); assert(routine);
const void *entry = routine->getEntry(); const void *entry = routine->getEntry();
assert(entry); (void)entry; assert(entry); (void)entry;
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