From c56bb45e839940fffabcbf928a3778cfffc31ddd Mon Sep 17 00:00:00 2001 From: Julian Lettner Date: Fri, 2 Oct 2020 16:18:15 -0700 Subject: [PATCH] [fuzzer] Remove unused variable `TempAutoDictionary` is never used. Maybe a leftover of a previous experiment? Differential Revision: https://reviews.llvm.org/D88763 --- compiler-rt/lib/fuzzer/FuzzerMutate.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler-rt/lib/fuzzer/FuzzerMutate.h b/compiler-rt/lib/fuzzer/FuzzerMutate.h index 37fd6100dac3..8cb9f86a0f73 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;