Skip to content

Commit dee0e63

Browse files
committed
style
1 parent 4b37874 commit dee0e63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/InstCombine/InstructionCombining.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1709,9 +1709,9 @@ Instruction *InstCombinerImpl::FoldOpIntoSelect(Instruction &Op, SelectInst *SI,
17091709
}
17101710

17111711
// Make sure that one of the select arms folds successfully.
1712-
Value *NewTV = simplifyOperationIntoSelectOperand(Op, SI, /*IsTrueArm*/ true);
1712+
Value *NewTV = simplifyOperationIntoSelectOperand(Op, SI, /*IsTrueArm=*/true);
17131713
Value *NewFV =
1714-
simplifyOperationIntoSelectOperand(Op, SI, /*IsTrueArm*/ false);
1714+
simplifyOperationIntoSelectOperand(Op, SI, /*IsTrueArm=*/false);
17151715
if (!NewTV && !NewFV)
17161716
return nullptr;
17171717

0 commit comments

Comments
 (0)