diff options
author | Kostya Serebryany <kcc@google.com> | 2015-10-22 21:48:09 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-10-22 21:48:09 +0000 |
commit | b36025619ce9aa74c6f39da0cd36d1137f945ad4 (patch) | |
tree | 21dc39032fe2991a136beed592eaf0314a518229 /llvm/lib/Fuzzer/FuzzerInternal.h | |
parent | 8a598f89ad7fa6885e3c06812bea1fecbaaf586f (diff) | |
download | bcm5719-llvm-b36025619ce9aa74c6f39da0cd36d1137f945ad4.tar.gz bcm5719-llvm-b36025619ce9aa74c6f39da0cd36d1137f945ad4.zip |
[libFuzzer] remove the deprecated 'tokens' feature
llvm-svn: 251069
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index 7391e5ff0bd..a57cd113553 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -93,7 +93,6 @@ class Fuzzer { std::string OutputCorpus; std::string SyncCommand; std::string ArtifactPrefix = "./"; - std::vector<std::string> Tokens; std::vector<Unit> Dictionary; bool SaveArtifacts = true; }; @@ -119,7 +118,6 @@ class Fuzzer { static void StaticAlarmCallback(); - Unit SubstituteTokens(const Unit &U) const; void ExecuteCallback(const Unit &U); private: @@ -133,7 +131,7 @@ class Fuzzer { void WriteToOutputCorpus(const Unit &U); void WriteUnitToFileWithPrefix(const Unit &U, const char *Prefix); void PrintStats(const char *Where, size_t Cov, const char *End = "\n"); - void PrintUnitInASCIIOrTokens(const Unit &U, const char *PrintAfter = ""); + void PrintUnitInASCII(const Unit &U, const char *PrintAfter = ""); void SyncCorpus(); |