diff options
Diffstat (limited to 'llvm_mode/afl-llvm-lto-instrumentation.so.cc')
-rw-r--r-- | llvm_mode/afl-llvm-lto-instrumentation.so.cc | 2 |
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 10482705..18bee7a5 100644 --- a/llvm_mode/afl-llvm-lto-instrumentation.so.cc +++ b/llvm_mode/afl-llvm-lto-instrumentation.so.cc @@ -621,7 +621,7 @@ bool AFLLTOPass::runOnModule(Module &M) { int skip = 0; for (uint32_t k = 0; k < BlockList.size(); k++) { - if (origBB == BlockList[k]) { + if (&BB == BlockList[k]) { if (debug) fprintf(stderr, |