diff options
author | van Hauser <vh@thc.org> | 2020-04-06 13:33:49 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-06 13:33:49 +0200 |
commit | 452acf3a752f3ff360a5eebc526567cd3ba9a407 (patch) | |
tree | 245765666a782044c6015d7c8774d89bc8eba210 /llvm_mode/split-compares-pass.so.cc | |
parent | 5ad50adaa86336f1f293d57fa70ba57de51cf5dd (diff) | |
download | afl++-452acf3a752f3ff360a5eebc526567cd3ba9a407.tar.gz |
added AFL_LLVM_INSTRUMENT, made USE_TRACE_PC obselete and llvm_mode Makefile fix, fixed for FUSELD (for LTO)
Diffstat (limited to 'llvm_mode/split-compares-pass.so.cc')
-rw-r--r-- | llvm_mode/split-compares-pass.so.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm_mode/split-compares-pass.so.cc b/llvm_mode/split-compares-pass.so.cc index d296ba3d..f0615f85 100644 --- a/llvm_mode/split-compares-pass.so.cc +++ b/llvm_mode/split-compares-pass.so.cc @@ -1235,8 +1235,8 @@ bool SplitComparesTransform::runOnModule(Module &M) { int bitw = 64; - char *bitw_env = getenv("LAF_SPLIT_COMPARES_BITW"); - if (!bitw_env) bitw_env = getenv("AFL_LLVM_LAF_SPLIT_COMPARES_BITW"); + char *bitw_env = getenv("AFL_LLVM_LAF_SPLIT_COMPARES_BITW"); + if (!bitw_env) bitw_env = getenv("LAF_SPLIT_COMPARES_BITW"); if (bitw_env) { bitw = atoi(bitw_env); } enableFPSplit = getenv("AFL_LLVM_LAF_SPLIT_FLOATS") != NULL; |