Skip to content

Commit 0778c56

Browse files
committed
Use default for 'FoldWithMultiUse'
1 parent beb417c commit 0778c56

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2902,8 +2902,7 @@ Instruction *InstCombinerImpl::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
29022902

29032903
if (Constant *C = dyn_cast<Constant>(RHS)) {
29042904
if (SelectInst *SI = dyn_cast<SelectInst>(LHS)) {
2905-
if (Instruction *I =
2906-
FoldOpIntoSelect(SVI, SI, /*FoldWithMultiUse=*/false))
2905+
if (Instruction *I = FoldOpIntoSelect(SVI, SI))
29072906
return I;
29082907
}
29092908
if (PHINode *PN = dyn_cast<PHINode>(LHS)) {

0 commit comments

Comments
 (0)