diff options
author | Kostya Serebryany <kcc@google.com> | 2016-04-25 19:41:45 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-04-25 19:41:45 +0000 |
commit | 9ba19182be2cb43d84c2b46b2e0858be5fa51329 (patch) | |
tree | 1be2e19517580718b2d3585982c65b8994cf6c4f /llvm/lib/Fuzzer/FuzzerLoop.cpp | |
parent | 2414bcabd20b44e2ebf056d5479ebbfe68dced67 (diff) | |
download | bcm5719-llvm-9ba19182be2cb43d84c2b46b2e0858be5fa51329.tar.gz bcm5719-llvm-9ba19182be2cb43d84c2b46b2e0858be5fa51329.zip |
[libFuzzer] remove dead code
llvm-svn: 267455
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerLoop.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerLoop.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerLoop.cpp b/llvm/lib/Fuzzer/FuzzerLoop.cpp index 5fe57bbb53d..cb3a789634e 100644 --- a/llvm/lib/Fuzzer/FuzzerLoop.cpp +++ b/llvm/lib/Fuzzer/FuzzerLoop.cpp @@ -184,10 +184,10 @@ void Fuzzer::PrintStats(const char *Where, const char *End) { csvHeaderPrinted = true; Printf("runs,block_cov,bits,cc_cov,corpus,execs_per_sec,tbms,reason\n"); } - Printf("%zd,%zd,%zd,%zd,%zd,%zd,%zd,%s\n", TotalNumberOfRuns, + Printf("%zd,%zd,%zd,%zd,%zd,%zd,%s\n", TotalNumberOfRuns, LastRecordedBlockCoverage, TotalBits(), LastRecordedCallerCalleeCoverage, Corpus.size(), ExecPerSec, - TotalNumberOfExecutedTraceBasedMutations, Where); + Where); } if (!Options.Verbosity) @@ -202,8 +202,6 @@ void Fuzzer::PrintStats(const char *Where, const char *End) { if (LastRecordedCallerCalleeCoverage) Printf(" indir: %zd", LastRecordedCallerCalleeCoverage); Printf(" units: %zd exec/s: %zd", Corpus.size(), ExecPerSec); - if (TotalNumberOfExecutedTraceBasedMutations) - Printf(" tbm: %zd", TotalNumberOfExecutedTraceBasedMutations); Printf("%s", End); } |