diff options
author | Kostya Serebryany <kcc@google.com> | 2016-05-13 18:04:35 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-05-13 18:04:35 +0000 |
commit | 8b0d90a6d46b47fcd67db44e2c79eff691b16e3e (patch) | |
tree | 2d5b66c1b87d3abb4214ec268d1ee0efe926054b /llvm/lib/Fuzzer/test/CustomMutatorTest.cpp | |
parent | 4e0cf49318e418fa6b914fb970b93c108047f949 (diff) | |
download | llvm-8b0d90a6d46b47fcd67db44e2c79eff691b16e3e.zip llvm-8b0d90a6d46b47fcd67db44e2c79eff691b16e3e.tar.gz llvm-8b0d90a6d46b47fcd67db44e2c79eff691b16e3e.tar.bz2 |
[libFuzzer] simplify FuzzerInterface.h
llvm-svn: 269448
Diffstat (limited to 'llvm/lib/Fuzzer/test/CustomMutatorTest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/CustomMutatorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/CustomMutatorTest.cpp b/llvm/lib/Fuzzer/test/CustomMutatorTest.cpp index 0e76eaf..4f84519 100644 --- a/llvm/lib/Fuzzer/test/CustomMutatorTest.cpp +++ b/llvm/lib/Fuzzer/test/CustomMutatorTest.cpp @@ -34,5 +34,5 @@ extern "C" size_t LLVMFuzzerCustomMutator(uint8_t *Data, size_t Size, std::cerr << "In LLVMFuzzerCustomMutator\n"; Printed = true; } - return fuzzer::Mutate(Data, Size, MaxSize); + return LLVMFuzzerMutate(Data, Size, MaxSize); } |