[PATCH] D48054: [libFuzzer] Mutation tracking and logging implemented
Kodé Williams via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 25 17:11:27 PDT 2018
kodewilliams added inline comments.
================
Comment at: lib/fuzzer/FuzzerLoop.cpp:369
+ if (Options.PrintMutationUsefulness)
+ MStats->PrintMutationUsefulness();
}
----------------
morehouse wrote:
> Should this go before the short-circuit above? Otherwise these stats won't be printed if `PrintFinalStats` is false.
Mutation stats relies on final stats. This way, the same line doesnt have to be put into the code 10 times (like PrintFinalStats() is).
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D48054
More information about the llvm-commits
mailing list