diff options
author | toka <tokazerkje@outlook.com> | 2023-10-16 16:45:30 +0200 |
---|---|---|
committer | toka <tokazerkje@outlook.com> | 2023-10-16 16:45:30 +0200 |
commit | 92ac2c228c66d71f0a6e4f3ece3397653d0027a9 (patch) | |
tree | 65e2b18587f73a5d050045516ccfcc0df569ed0b /instrumentation/afl-llvm-pass.so.cc | |
parent | c885a892ffac21838b80a977f1354a9e287ff0a2 (diff) | |
download | afl++-92ac2c228c66d71f0a6e4f3ece3397653d0027a9.tar.gz |
typo
Diffstat (limited to 'instrumentation/afl-llvm-pass.so.cc')
-rw-r--r-- | instrumentation/afl-llvm-pass.so.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/instrumentation/afl-llvm-pass.so.cc b/instrumentation/afl-llvm-pass.so.cc index c59324fd..052488a9 100644 --- a/instrumentation/afl-llvm-pass.so.cc +++ b/instrumentation/afl-llvm-pass.so.cc @@ -552,7 +552,7 @@ bool AFLCoverage::runOnModule(Module &M) { #endif { - // load the context ID of the previous function and write to to a + // load the context ID of the previous function and write to a // local variable on the stack LoadInst *PrevCtxLoad = IRB.CreateLoad( #if LLVM_VERSION_MAJOR >= 14 @@ -634,7 +634,7 @@ bool AFLCoverage::runOnModule(Module &M) { /* There is a problem with Ubuntu 18.04 and llvm 6.0 (see issue #63). The inline function successors() is not inlined and also not found at runtime - :-( As I am unable to detect Ubuntu18.04 heree, the next best thing is to + :-( As I am unable to detect Ubuntu18.04 here, the next best thing is to disable this optional optimization for LLVM 6.0.0 and Linux */ #if !(LLVM_VERSION_MAJOR == 6 && LLVM_VERSION_MINOR == 0) || !defined __linux__ // only instrument if this basic block is the destination of a previous |