diff options
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index d27ac8684fc..08f8801ac5f 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -217,6 +217,7 @@ struct FuzzingOptions { bool UseIndirCalls = true; bool UseTraces = false; bool UseMemcmp = true; + bool UseMemmem = true; bool UseFullCoverageSet = false; bool Reload = true; bool ShuffleAtStartUp = true; @@ -293,7 +294,7 @@ public: void AddWordToManualDictionary(const Word &W); - void AddWordToAutoDictionary(const Word &W, size_t PositionHint); + void AddWordToAutoDictionary(DictionaryEntry DE); void ClearAutoDictionary(); void PrintRecommendedDictionary(); |