[llvm] r227478 - [fuzzer] fix warning in a test
Kostya Serebryany
kcc at google.com
Thu Jan 29 10:13:37 PST 2015
Author: kcc
Date: Thu Jan 29 12:13:36 2015
New Revision: 227478
URL: http://llvm.org/viewvc/llvm-project?rev=227478&view=rev
Log:
[fuzzer] fix warning in a test
Modified:
llvm/trunk/lib/Fuzzer/test/ExactTest.cpp
Modified: llvm/trunk/lib/Fuzzer/test/ExactTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/test/ExactTest.cpp?rev=227478&r1=227477&r2=227478&view=diff
==============================================================================
--- llvm/trunk/lib/Fuzzer/test/ExactTest.cpp (original)
+++ llvm/trunk/lib/Fuzzer/test/ExactTest.cpp Thu Jan 29 12:13:36 2015
@@ -4,8 +4,6 @@
#include <cstddef>
#include <iostream>
-static volatile int Sink;
-
extern "C" void TestOneInput(const uint8_t *Data, size_t Size) {
int bits = 0;
if (Size > 0 && Data[0] == 'F') bits |= 1;
More information about the llvm-commits
mailing list