diff options
author | van Hauser <vh@thc.org> | 2021-01-15 17:32:43 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2021-01-15 17:32:43 +0100 |
commit | d36af0d576e579b1224b5e27152fa8ec6a8e12bb (patch) | |
tree | ee30a653eed68fddc1cc53b02cce9faacdad74c2 | |
parent | fba8790e322ab933df9851f0cf6ce9ca941f3814 (diff) | |
download | afl++-d36af0d576e579b1224b5e27152fa8ec6a8e12bb.tar.gz |
fix msg
-rw-r--r-- | instrumentation/SanitizerCoverageLTO.so.cc | 2 | ||||
-rw-r--r-- | instrumentation/afl-llvm-lto-instrumentation.so.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/instrumentation/SanitizerCoverageLTO.so.cc b/instrumentation/SanitizerCoverageLTO.so.cc index 1d7ac934..016ac71f 100644 --- a/instrumentation/SanitizerCoverageLTO.so.cc +++ b/instrumentation/SanitizerCoverageLTO.so.cc @@ -1111,7 +1111,7 @@ bool ModuleSanitizerCoverage::instrumentModule( getenv("AFL_USE_CFISAN") ? ", CFISAN" : "", getenv("AFL_USE_UBSAN") ? ", UBSAN" : ""); OKF("Instrumented %u locations with no collisions (on average %llu " - "collisions would be in afl-gcc/afl-clang-fast) (%s mode).", + "collisions would be in afl-gcc/vanilla AFL) (%s mode).", inst, calculateCollisions(inst), modeline); } diff --git a/instrumentation/afl-llvm-lto-instrumentation.so.cc b/instrumentation/afl-llvm-lto-instrumentation.so.cc index 9cacacf9..13dca8c4 100644 --- a/instrumentation/afl-llvm-lto-instrumentation.so.cc +++ b/instrumentation/afl-llvm-lto-instrumentation.so.cc @@ -1033,7 +1033,7 @@ bool AFLLTOPass::runOnModule(Module &M) { getenv("AFL_USE_CFISAN") ? ", CFISAN" : "", getenv("AFL_USE_UBSAN") ? ", UBSAN" : ""); OKF("Instrumented %d locations with no collisions (on average %llu " - "collisions would be in afl-gcc/afl-clang-fast) (%s mode).", + "collisions would be in afl-gcc/vanilla AFL) (%s mode).", inst_blocks, calculateCollisions(inst_blocks), modeline); } |