diff options
author | van Hauser <vh@thc.org> | 2020-07-01 09:19:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-01 09:19:32 +0200 |
commit | b67905c40fe0c284eaf27c83423a4d7cdd717157 (patch) | |
tree | c47d0b5bd7804d241dcff94bb1763e79ecc9ae1d /llvm_mode/afl-llvm-common.cc | |
parent | 6b98157c1a235c10ed5f9fc3220aa1869ea8f3e4 (diff) | |
parent | 9d5007b18e41f17c395fcfc5fc0a8c8c87f4f75d (diff) | |
download | afl++-b67905c40fe0c284eaf27c83423a4d7cdd717157.tar.gz |
Merge branch 'stable' into dev
Diffstat (limited to 'llvm_mode/afl-llvm-common.cc')
-rw-r--r-- | llvm_mode/afl-llvm-common.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm_mode/afl-llvm-common.cc b/llvm_mode/afl-llvm-common.cc index d70ccaeb..47b49358 100644 --- a/llvm_mode/afl-llvm-common.cc +++ b/llvm_mode/afl-llvm-common.cc @@ -110,10 +110,10 @@ void initInstrumentList() { bool isInInstrumentList(llvm::Function *F) { // is this a function with code? If it is external we dont instrument it - // anyway and cant be in the instrument file list. Or if it is ignored. + // anyway and cant be in the the instrument file list. Or if it is ignored. if (!F->size() || isIgnoreFunction(F)) return false; - // if we do not have any instrument file list entries return true + // if we do not have a the instrument file list return true if (myInstrumentList.empty()) return true; // let's try to get the filename for the function @@ -218,7 +218,7 @@ bool isInInstrumentList(llvm::Function *F) { else { // we could not find out the location. in this case we say it is not - // in the instrument file list + // in the the instrument file list return false; |