aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-07-09 21:32:06 +0200
committervan Hauser <vh@thc.org>2020-07-09 21:32:06 +0200
commit60bb1afc727bdade0504e14a8d781c1a37fcda28 (patch)
tree53543d35611b103f68229812920b204d7dac0b74
parent84a320f834b8138b9b3193e977cd170d1d445a44 (diff)
downloadafl++-60bb1afc727bdade0504e14a8d781c1a37fcda28.tar.gz
code format
-rw-r--r--llvm_mode/split-compares-pass.so.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm_mode/split-compares-pass.so.cc b/llvm_mode/split-compares-pass.so.cc
index 82645224..1333bd41 100644
--- a/llvm_mode/split-compares-pass.so.cc
+++ b/llvm_mode/split-compares-pass.so.cc
@@ -640,7 +640,8 @@ size_t SplitComparesTransform::splitFPCompares(Module &M) {
BranchInst::Create(end_bb, signequal_bb);
- /* create a new bb which is executed if exponents are satisfying the compare */
+ /* create a new bb which is executed if exponents are satisfying the compare
+ */
BasicBlock *middle_bb =
BasicBlock::Create(C, "injected", end_bb->getParent(), end_bb);
@@ -738,7 +739,8 @@ size_t SplitComparesTransform::splitFPCompares(Module &M) {
{
auto term = signequal_bb->getTerminator();
- /* if the exponents are satifying the compare do a fraction cmp in middle_bb */
+ /* if the exponents are satifying the compare do a fraction cmp in
+ * middle_bb */
BranchInst::Create(middle_bb, end_bb, icmp_exponent_result, signequal_bb);
term->eraseFromParent();