diff options
Diffstat (limited to 'llvm/lib/Fuzzer/test/AFLDriverTest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/AFLDriverTest.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/lib/Fuzzer/test/AFLDriverTest.cpp b/llvm/lib/Fuzzer/test/AFLDriverTest.cpp deleted file mode 100644 index 9ae18cb6cb9..00000000000 --- a/llvm/lib/Fuzzer/test/AFLDriverTest.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include <stdint.h> -#include <stdlib.h> - -extern "C" void __afl_manual_init() {} - -extern "C" int __afl_persistent_loop(unsigned int) { - return 0; -} - -extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { - return 0; -} |