about summary refs log tree commit diff
path: root/llvm_mode/afl-llvm-lto-instrumentation.so.cc
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-06-30 16:52:48 +0200
committervan Hauser <vh@thc.org>2020-06-30 16:52:48 +0200
commit878b27af762b9d79d46c3de59ced749bb0e93d35 (patch)
tree95ef3d7647420d81bd9eab723e0c81170794c5cf /llvm_mode/afl-llvm-lto-instrumentation.so.cc
parent4b99ebbf22fa7a9d4fe43056c641e71af04133be (diff)
downloadafl++-878b27af762b9d79d46c3de59ced749bb0e93d35.tar.gz
blacklist -> ignore renaming
Diffstat (limited to 'llvm_mode/afl-llvm-lto-instrumentation.so.cc')
-rw-r--r--llvm_mode/afl-llvm-lto-instrumentation.so.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_mode/afl-llvm-lto-instrumentation.so.cc b/llvm_mode/afl-llvm-lto-instrumentation.so.cc
index 0d3015d7..82af890c 100644
--- a/llvm_mode/afl-llvm-lto-instrumentation.so.cc
+++ b/llvm_mode/afl-llvm-lto-instrumentation.so.cc
@@ -196,7 +196,7 @@ bool AFLLTOPass::runOnModule(Module &M) {
     // fprintf(stderr, "DEBUG: Function %s\n", F.getName().str().c_str());
 
     if (F.size() < function_minimum_size) continue;
-    if (isBlacklisted(&F)) continue;
+    if (isIgnoreFunction(&F)) continue;
 
     // whitelist check
     AttributeList Attrs = F.getAttributes();