diff options
author | Kostya Serebryany <kcc@google.com> | 2016-03-17 19:59:39 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-03-17 19:59:39 +0000 |
commit | c5575aabd62d2dc6ad74d03d0b49cc40dcb19b1e (patch) | |
tree | aa0d788c8b839b59da52b49f26dcee7a8a94b0ad /llvm/lib/Fuzzer/FuzzerInternal.h | |
parent | 0f6caf66e9975b7332bc6ce5ab29a8dfa12dfa58 (diff) | |
download | bcm5719-llvm-c5575aabd62d2dc6ad74d03d0b49cc40dcb19b1e.tar.gz bcm5719-llvm-c5575aabd62d2dc6ad74d03d0b49cc40dcb19b1e.zip |
[libFuzzer] deprecate several flags
llvm-svn: 263739
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index 29a00507c0e..5c6abc7ff43 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -290,11 +290,9 @@ public: bool ShuffleAtStartUp = true; int PreferSmallDuringInitialShuffle = -1; size_t MaxNumberOfRuns = ULONG_MAX; - int SyncTimeout = 600; int ReportSlowUnits = 10; bool OnlyASCII = false; std::string OutputCorpus; - std::string SyncCommand; std::string ArtifactPrefix = "./"; std::string ExactArtifactPath; bool SaveArtifacts = true; @@ -365,8 +363,6 @@ private: // Must be called whenever the corpus or unit weights are changed. void UpdateCorpusDistribution(); - void SyncCorpus(); - size_t RecordBlockCoverage(); size_t RecordCallerCalleeCoverage(); void PrepareCoverageBeforeRun(); @@ -412,7 +408,6 @@ private: MutationDispatcher &MD; FuzzingOptions Options; system_clock::time_point ProcessStartTime = system_clock::now(); - system_clock::time_point LastExternalSync = system_clock::now(); system_clock::time_point UnitStartTime; long TimeOfLongestUnitInSeconds = 0; long EpochOfLastReadOfOutputCorpus = 0; |