Skip to content

Commit 48d0926

Browse files
author
Leon Clark
committed
Fix build bot false positive for undef.
1 parent b2a69d8 commit 48d0926

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
@@ -3429,7 +3429,7 @@ bool VectorCombine::shrinkLoadForShuffles(Instruction &I) {
34293429
if (!Shuffle->hasNUsesOrMore(1u))
34303430
continue;
34313431

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

0 commit comments

Comments
 (0)