diff options
author | van Hauser <vh@thc.org> | 2020-02-19 10:52:44 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-02-19 10:52:44 +0100 |
commit | f9d7ad8e4353fe306b7574e3d645ba2c3ea423ed (patch) | |
tree | 301acd761c149e78bdb2a5377b2fe1aeba6b8612 /llvm_mode/split-switches-pass.so.cc | |
parent | 69898722cb7a12a88604f2298736fdf244634bfd (diff) | |
download | afl++-f9d7ad8e4353fe306b7574e3d645ba2c3ea423ed.tar.gz |
forgot cleanup
Diffstat (limited to 'llvm_mode/split-switches-pass.so.cc')
-rw-r--r-- | llvm_mode/split-switches-pass.so.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm_mode/split-switches-pass.so.cc b/llvm_mode/split-switches-pass.so.cc index 70ffe7b6..d2ba28cb 100644 --- a/llvm_mode/split-switches-pass.so.cc +++ b/llvm_mode/split-switches-pass.so.cc @@ -491,7 +491,8 @@ bool SplitSwitchesTransform::splitSwitches(Module &M) { * less, don't bother with the code below. */ if (!SI->getNumCases() || bitw <= 8) { - if (isatty(2) && getenv("AFL_QUIET") == NULL) errs() << "skip trivial switch..\n"; + if (isatty(2) && getenv("AFL_QUIET") == NULL) + errs() << "skip trivial switch..\n"; continue; } |