Skip to content

Commit 8ec812d

Browse files
formatting
1 parent 0ac50a3 commit 8ec812d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2983,10 +2983,9 @@ Instruction *InstCombinerImpl::foldAndOrOfSelectUsingImpliedCond(Value *Op,
29832983
Instruction *MDFrom = nullptr;
29842984
if (!ProfcheckDisableMetadataFixes)
29852985
MDFrom = &SI;
2986-
return SelectInst::Create(Op,
2987-
IsAnd ? V : ConstantInt::getTrue(Op->getType()),
2988-
IsAnd ? ConstantInt::getFalse(Op->getType()) : V,
2989-
"", nullptr, MDFrom);
2986+
return SelectInst::Create(
2987+
Op, IsAnd ? V : ConstantInt::getTrue(Op->getType()),
2988+
IsAnd ? ConstantInt::getFalse(Op->getType()) : V, "", nullptr, MDFrom);
29902989
}
29912990
return nullptr;
29922991
}

0 commit comments

Comments
 (0)