diff options
| author | vanhauser-thc <vh@thc.org> | 2021-06-24 09:59:00 +0200 |
|---|---|---|
| committer | vanhauser-thc <vh@thc.org> | 2021-06-24 09:59:00 +0200 |
| commit | 1fcb52957e59c89d6ad39ead753eefb4cf6683df (patch) | |
| tree | b245074c34fd3058af13375f77d8fbbb0f7a3457 /instrumentation/split-compares-pass.so.cc | |
| parent | ec781af2c74c17ba3b6ce874a4fc26573872deb8 (diff) | |
| download | afl++-1fcb52957e59c89d6ad39ead753eefb4cf6683df.tar.gz | |
fix frida
Diffstat (limited to 'instrumentation/split-compares-pass.so.cc')
| -rw-r--r-- | instrumentation/split-compares-pass.so.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/instrumentation/split-compares-pass.so.cc b/instrumentation/split-compares-pass.so.cc index 68f6c329..13f45b69 100644 --- a/instrumentation/split-compares-pass.so.cc +++ b/instrumentation/split-compares-pass.so.cc @@ -1397,11 +1397,13 @@ bool SplitComparesTransform::runOnModule(Module &M) { } bool brokenDebug = false; - if (verifyModule( M, &errs() -#if LLVM_VERSION_MAJOR > 3 || (LLVM_VERSION_MAJOR == 3 && LLVM_VERSION_MINOR >= 9) - ,&brokenDebug // 9th May 2016 + if (verifyModule(M, &errs() +#if LLVM_VERSION_MAJOR > 3 || \ + (LLVM_VERSION_MAJOR == 3 && LLVM_VERSION_MINOR >= 9) + , + &brokenDebug // 9th May 2016 #endif - )) { + )) { reportError( "Module Verifier failed! Consider reporting a bug with the AFL++ " |
