diff options
Diffstat (limited to 'llvm/lib/Fuzzer/test/dfsan/DFSanSimpleCmpTest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/dfsan/DFSanSimpleCmpTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/dfsan/DFSanSimpleCmpTest.cpp b/llvm/lib/Fuzzer/test/dfsan/DFSanSimpleCmpTest.cpp index 11620929a42..d94d1defa00 100644 --- a/llvm/lib/Fuzzer/test/dfsan/DFSanSimpleCmpTest.cpp +++ b/llvm/lib/Fuzzer/test/dfsan/DFSanSimpleCmpTest.cpp @@ -4,7 +4,7 @@ #include <cstring> #include <cstdio> -extern "C" void TestOneInput(const uint8_t *Data, size_t Size) { +extern "C" void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { if (Size < 14) return; uint64_t x = 0; int64_t y = 0; |