diff options
author | Kostya Serebryany <kcc@google.com> | 2016-01-15 06:24:05 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-01-15 06:24:05 +0000 |
commit | ae5b9567bc2f86fe83e5c59b3909dc8dcae30e2a (patch) | |
tree | 988240ec679ec16cdd379232b60208f938ee3182 /llvm/lib/Fuzzer/FuzzerInternal.h | |
parent | 19e8c0e2f7add381e14be0a5b75095f8b77a3ee3 (diff) | |
download | bcm5719-llvm-ae5b9567bc2f86fe83e5c59b3909dc8dcae30e2a.tar.gz bcm5719-llvm-ae5b9567bc2f86fe83e5c59b3909dc8dcae30e2a.zip |
[libFuzzer] do mutations based on memcmp/strcmp interceptors under a separate flag (-use_memcmp, default=1)
llvm-svn: 257873
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index 7d4de95afd9..6c16b7642e1 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -83,6 +83,7 @@ class Fuzzer { bool UseCounters = false; bool UseIndirCalls = true; bool UseTraces = false; + bool UseMemcmp = true; bool UseFullCoverageSet = false; bool Reload = true; bool ShuffleAtStartUp = true; |