| commit | 3e2b10936c5304477fdadfa233671738008fe154 | [log] [tgz] |
|---|---|---|
| author | Nicolas Capens <capn@google.com> | Tue Oct 31 14:09:52 2017 -0400 |
| committer | Nicolas Capens <nicolascapens@google.com> | Tue Oct 31 18:11:25 2017 +0000 |
| tree | f5ffd9b54721801c0d9455957591c8302fbadf23 | |
| parent | 13d16092838e4250cf8a63053594996059c4303d [diff] |
Fix pedantic Linux warning treated as error. Unused variable 'entry'. Change-Id: I115b7d599d871c0f130f72e32618a8ed29776b81 Reviewed-on: https://swiftshader-review.googlesource.com/13468 Reviewed-by: Nicolas Capens <nicolascapens@google.com> Tested-by: Nicolas Capens <nicolascapens@google.com>
diff --git a/tests/fuzzers/VertexRoutineFuzzer.cpp b/tests/fuzzers/VertexRoutineFuzzer.cpp index d64466b..8f25c4d 100644 --- a/tests/fuzzers/VertexRoutineFuzzer.cpp +++ b/tests/fuzzers/VertexRoutineFuzzer.cpp
@@ -205,7 +205,7 @@ sw::Routine *routine = program(L"VertexRoutine"); assert(routine); const void *entry = routine->getEntry(); - assert(entry); + assert(entry); (void)entry; delete routine; return 0;