about summary refs log tree commit diff
path: root/llvm_mode/afl-llvm-common.cc
diff options
context:
space:
mode:
Diffstat (limited to 'llvm_mode/afl-llvm-common.cc')
-rw-r--r--llvm_mode/afl-llvm-common.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm_mode/afl-llvm-common.cc b/llvm_mode/afl-llvm-common.cc
index f12bbe31..7a73a174 100644
--- a/llvm_mode/afl-llvm-common.cc
+++ b/llvm_mode/afl-llvm-common.cc
@@ -331,8 +331,8 @@ bool isInInstrumentList(llvm::Function *F) {
 
   bool return_default = true;
 
-  // 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.
+  // is this a function with code? If it is external we don't instrument it
+  // anyway and it can't be in the instrument file list. Or if it is it is ignored.
   if (!F->size() || isIgnoreFunction(F)) return false;
 
   if (!denyListFiles.empty() || !denyListFunctions.empty()) {
@@ -476,7 +476,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
         if (!be_quiet)
           WARNF(
               "No debug information found for function %s, will be "
@@ -489,7 +489,7 @@ bool isInInstrumentList(llvm::Function *F) {
 
   }
 
-  // if we do not have a the instrument file list return true
+  // if we do not have a instrument file list return true
   if (!allowListFiles.empty() || !allowListFunctions.empty()) {
 
     return_default = false;
@@ -632,8 +632,8 @@ bool isInInstrumentList(llvm::Function *F) {
 #endif
       else {
 
-        // we could not find out the location. in this case we say it is not
-        // in the the instrument file list
+        // we could not find out the location. In this case we say it is not
+        // in the instrument file list
         if (!be_quiet)
           WARNF(
               "No debug information found for function %s, will not be "