diff options
author | Julian Lettner <julian.lettner@apple.com> | 2020-10-02 16:18:15 -0700 |
---|---|---|
committer | Julian Lettner <julian.lettner@apple.com> | 2020-10-02 16:21:53 -0700 |
commit | c56bb45e839940fffabcbf928a3778cfffc31ddd (patch) | |
tree | 5e605684860bef0a61689bfdafd69d33573f1745 | |
parent | cbd420c5ed8568774ace3ad8385b2346288e152c (diff) | |
download | llvm-c56bb45e839940fffabcbf928a3778cfffc31ddd.zip llvm-c56bb45e839940fffabcbf928a3778cfffc31ddd.tar.gz llvm-c56bb45e839940fffabcbf928a3778cfffc31ddd.tar.bz2 |
[fuzzer] Remove unused variable
`TempAutoDictionary` is never used. Maybe a leftover of a previous
experiment?
Differential Revision: https://reviews.llvm.org/D88763
-rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerMutate.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerMutate.h b/compiler-rt/lib/fuzzer/FuzzerMutate.h index 37fd610..8cb9f86 100644 --- a/compiler-rt/lib/fuzzer/FuzzerMutate.h +++ b/compiler-rt/lib/fuzzer/FuzzerMutate.h @@ -129,9 +129,6 @@ public: // Dictionary provided by the user via -dict=DICT_FILE. Dictionary ManualDictionary; - // Temporary dictionary modified by the fuzzer itself, - // recreated periodically. - Dictionary TempAutoDictionary; // Persistent dictionary modified by the fuzzer, consists of // entries that led to successful discoveries in the past mutations. Dictionary PersistentAutoDictionary; |