diff options
author | vanhauser-thc <vh@thc.org> | 2024-01-18 17:12:09 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-01-18 17:12:09 +0100 |
commit | cefc9a00bfdd789261157874236399e95c244907 (patch) | |
tree | 00f22007f1e528fa64929688577ed011cced83a1 /instrumentation/afl-llvm-common.cc | |
parent | e731a1c1ab48dbc9a70a9e5680f00aab307abfa1 (diff) | |
download | afl++-cefc9a00bfdd789261157874236399e95c244907.tar.gz |
help selective instrumentation
Diffstat (limited to 'instrumentation/afl-llvm-common.cc')
-rw-r--r-- | instrumentation/afl-llvm-common.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/instrumentation/afl-llvm-common.cc b/instrumentation/afl-llvm-common.cc index 96952bd6..8e9e7800 100644 --- a/instrumentation/afl-llvm-common.cc +++ b/instrumentation/afl-llvm-common.cc @@ -201,7 +201,7 @@ void initInstrumentList() { if (debug) DEBUGF("loaded allowlist with %zu file and %zu function entries\n", - allowListFiles.size(), allowListFunctions.size()); + allowListFiles.size() / 4, allowListFunctions.size() / 4); } @@ -276,7 +276,7 @@ void initInstrumentList() { if (debug) DEBUGF("loaded denylist with %zu file and %zu function entries\n", - denyListFiles.size(), denyListFunctions.size()); + denyListFiles.size() / 4, denyListFunctions.size() / 4); } |