Skip to content

Commit 1092f5b

Browse files
author
Leon Clark
committed
Fix build bot false positive for undef.
1 parent 4dc36ee commit 1092f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/VectorCombine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3514,7 +3514,7 @@ bool VectorCombine::shrinkLoadForShuffles(Instruction &I) {
35143514
if (!Shuffle->hasNUsesOrMore(1u))
35153515
continue;
35163516

3517-
// Ensure second operand is a poison/undef value.
3517+
// Ensure second operand is a poison value.
35183518
auto *Op0 = Shuffle->getOperand(0);
35193519
auto *Op1 = Shuffle->getOperand(1);
35203520
if (!isa<PoisonValue>(Op1) && !isa<UndefValue>(Op1))

0 commit comments

Comments
 (0)