diff options
author | Kostya Serebryany <kcc@google.com> | 2016-09-23 01:58:51 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-09-23 01:58:51 +0000 |
commit | 16a145fd0ff30a2ae0a94de0bfc1e5b4828ddcdd (patch) | |
tree | 244f248da12a4110426c5ab70b93371085fe9a3e /llvm/lib/Fuzzer/FuzzerInternal.h | |
parent | e88bbc34c6c13b1ac1a76183afa04b327fc1abc0 (diff) | |
download | bcm5719-llvm-16a145fd0ff30a2ae0a94de0bfc1e5b4828ddcdd.tar.gz bcm5719-llvm-16a145fd0ff30a2ae0a94de0bfc1e5b4828ddcdd.zip |
[libFuzzer] fix merging with trace-pc-guard
llvm-svn: 282224
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index 7574e22347f..23cdc6a84cc 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -110,7 +110,7 @@ private: bool RunOne(const Unit &U) { return RunOne(U.data(), U.size()); } void WriteToOutputCorpus(const Unit &U); void WriteUnitToFileWithPrefix(const Unit &U, const char *Prefix); - void PrintStats(const char *Where, const char *End = "\n"); + void PrintStats(const char *Where, const char *End = "\n", size_t Units = 0); void PrintStatusForNewUnit(const Unit &U); void ShuffleCorpus(UnitVector *V); void TryDetectingAMemoryLeak(const uint8_t *Data, size_t Size, |