aboutsummaryrefslogtreecommitdiff
path: root/instrumentation
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2023-04-12 10:53:23 +0200
committervanhauser-thc <vh@thc.org>2023-04-12 10:53:23 +0200
commit743ae507756db0707a213cd8272b219b0de0f514 (patch)
tree125cecc79c148552844723e95ddd246bf918d6fc /instrumentation
parenta5a122a533cbef1b3628d0519f9fad693e0c5ad3 (diff)
downloadAFLplusplus-743ae507756db0707a213cd8272b219b0de0f514.tar.gz
nits
Diffstat (limited to 'instrumentation')
-rw-r--r--instrumentation/afl-llvm-common.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/instrumentation/afl-llvm-common.cc b/instrumentation/afl-llvm-common.cc
index de334fb7..5d82aa25 100644
--- a/instrumentation/afl-llvm-common.cc
+++ b/instrumentation/afl-llvm-common.cc
@@ -289,9 +289,7 @@ void scanForDangerousFunctions(llvm::Module *M) {
StringRef ifunc_name = IF.getName();
Constant *r = IF.getResolver();
- if(r->getNumOperands() == 0){
- continue ;
- }
+ if (r->getNumOperands() == 0) { continue; }
StringRef r_name = cast<Function>(r->getOperand(0))->getName();
if (!be_quiet)
fprintf(stderr,