summaryrefslogtreecommitdiff
path: root/lib/fuzzer/FuzzerMerge.h
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2019-02-08 22:02:37 +0000
committerKostya Serebryany <kcc@google.com>2019-02-08 22:02:37 +0000
commit4c775333c188cc37182c72eb2a7261f7eaeb32a5 (patch)
tree81ab34c39d718db86d7665770cc12d94e218f5b3 /lib/fuzzer/FuzzerMerge.h
parent4bdfbe8883e81de78f806e2539c0718af49c02c7 (diff)
downloadcompiler-rt-4c775333c188cc37182c72eb2a7261f7eaeb32a5.tar.gz
[libFuzzer] remove two unused experimental flags
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@353573 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/fuzzer/FuzzerMerge.h')
-rw-r--r--lib/fuzzer/FuzzerMerge.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/fuzzer/FuzzerMerge.h b/lib/fuzzer/FuzzerMerge.h
index 917108e3f..273f486b2 100644
--- a/lib/fuzzer/FuzzerMerge.h
+++ b/lib/fuzzer/FuzzerMerge.h
@@ -63,8 +63,6 @@ struct Merger {
bool Parse(std::istream &IS, bool ParseCoverage);
bool Parse(const std::string &Str, bool ParseCoverage);
void ParseOrExit(std::istream &IS, bool ParseCoverage);
- void PrintSummary(std::ostream &OS);
- Set<uint32_t> ParseSummary(std::istream &IS);
size_t Merge(const Set<uint32_t> &InitialFeatures,
Vector<std::string> *NewFiles);
size_t ApproximateMemoryConsumption() const;
@@ -74,9 +72,7 @@ struct Merger {
Vector<std::string>
CrashResistantMerge(const Vector<std::string> &Args,
const Vector<std::string> &Corpora,
- const std::string &CFPath,
- const char *CoverageSummaryInputPathOrNull,
- const char *CoverageSummaryOutputPathOrNull);
+ const std::string &CFPath);
} // namespace fuzzer