aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhexcoder <hexcoder-@users.noreply.github.com>2020-07-01 07:35:42 +0200
committerGitHub <noreply@github.com>2020-07-01 07:35:42 +0200
commite9dce3149606877883df01cc66f99da0addf79ee (patch)
tree5601d05868a5df8d22a53c140342ccfe22407955
parentb201279ae5e4066ffa7f11d58f0efd73938aa8dd (diff)
downloadafl++-e9dce3149606877883df01cc66f99da0addf79ee.tar.gz
comments fixed
-rw-r--r--llvm_mode/afl-llvm-common.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm_mode/afl-llvm-common.cc b/llvm_mode/afl-llvm-common.cc
index 47b49358..d70ccaeb 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 the instrument file list. Or if it is ignored.
+ // anyway and cant be in the instrument file list. Or if it is ignored.
if (!F->size() || isIgnoreFunction(F)) return false;
- // if we do not have a the instrument file list return true
+ // if we do not have any instrument file list entries 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 the instrument file list
+ // in the instrument file list
return false;