diff options
author | van Hauser <vh@thc.org> | 2020-07-12 13:44:25 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-07-12 13:44:25 +0200 |
commit | b126a5d5a8d90dcc10ccb890b379c3dfdc5cf8d4 (patch) | |
tree | fbcbf33493455e04d600d93fec5a72701ca91fed /llvm_mode/afl-llvm-lto-instrim.so.cc | |
parent | 571031a46730a7f0d5a99ff373d7bdc8c2561149 (diff) | |
download | afl++-b126a5d5a8d90dcc10ccb890b379c3dfdc5cf8d4.tar.gz |
LTO: autodict default, instrim disabled
Diffstat (limited to 'llvm_mode/afl-llvm-lto-instrim.so.cc')
-rw-r--r-- | llvm_mode/afl-llvm-lto-instrim.so.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/llvm_mode/afl-llvm-lto-instrim.so.cc b/llvm_mode/afl-llvm-lto-instrim.so.cc index ca2b5886..880963ac 100644 --- a/llvm_mode/afl-llvm-lto-instrim.so.cc +++ b/llvm_mode/afl-llvm-lto-instrim.so.cc @@ -73,7 +73,7 @@ struct InsTrimLTO : public ModulePass { protected: uint32_t function_minimum_size = 1; char * skip_nozero = NULL; - int afl_global_id = 1, debug = 0, autodictionary = 0; + int afl_global_id = 1, debug = 0, autodictionary = 1; uint32_t be_quiet = 0, inst_blocks = 0, inst_funcs = 0; uint64_t map_addr = 0x10000; @@ -127,10 +127,6 @@ struct InsTrimLTO : public ModulePass { /* Process environment variables */ - if (getenv("AFL_LLVM_AUTODICTIONARY") || - getenv("AFL_LLVM_LTO_AUTODICTIONARY")) - autodictionary = 1; - if (getenv("AFL_LLVM_MAP_DYNAMIC")) map_addr = 0; if ((ptr = getenv("AFL_LLVM_MAP_ADDR"))) { |