about summary refs log tree commit diff
path: root/llvm_mode/LLVMInsTrim.so.cc
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2019-07-14 19:48:28 +0200
committervan Hauser <vh@thc.org>2019-07-14 19:48:28 +0200
commit013a1731d590eaa1f3e4c58c69985f89b7a3d2f9 (patch)
tree7539488e0c9f6b69e79477f55f1218f79f0fbdd2 /llvm_mode/LLVMInsTrim.so.cc
parente66402485342088e6fcaecfe2abbba291a48bda5 (diff)
downloadafl++-013a1731d590eaa1f3e4c58c69985f89b7a3d2f9.tar.gz
set instrim as default and updated documentation
Diffstat (limited to 'llvm_mode/LLVMInsTrim.so.cc')
-rw-r--r--llvm_mode/LLVMInsTrim.so.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm_mode/LLVMInsTrim.so.cc b/llvm_mode/LLVMInsTrim.so.cc
index 51640870..8e9f7667 100644
--- a/llvm_mode/LLVMInsTrim.so.cc
+++ b/llvm_mode/LLVMInsTrim.so.cc
@@ -98,10 +98,10 @@ namespace {
     
       if (getenv("LOOPHEAD")) {
         LoopHeadOpt = true;
-        MarkSetOpt = true;
-      } else if (getenv("MARKSET")) {
-        MarkSetOpt = true;
       }
+
+      // this is our default
+      MarkSetOpt = true;
       
 /*    // I dont think this makes sense to port into LLVMInsTrim
       char* inst_ratio_str = getenv("AFL_INST_RATIO");