Skip to content

Commit 573c2a9

Browse files
committed
fix formatting
1 parent 35aa07d commit 573c2a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Scalar/JumpThreading.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,8 +1241,8 @@ bool JumpThreadingPass::preserveLoopPreHeader(BasicBlock *BB) {
12411241
if (isOpDefinedInBlock(Op, BB))
12421242
HasValueDefinedInPreHeader = true;
12431243
else if (!isa<PHINode>(Inst) &&
1244-
llvm::any_of(Inst->operand_values(),
1245-
[&PHI](Value *V) { return V == &PHI; }))
1244+
llvm::any_of(Inst->operand_values(),
1245+
[&PHI](Value *V) { return V == &PHI; }))
12461246
HasPotentialSelfReference = true;
12471247
}
12481248
return HasValueDefinedInPreHeader && HasPotentialSelfReference;

0 commit comments

Comments
 (0)