Skip to content

Commit 839f7bd

Browse files
author
Leon Clark
committed
Fix build bot false positive for undef.
1 parent 875c408 commit 839f7bd

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
@@ -3722,7 +3722,7 @@ bool VectorCombine::shrinkLoadForShuffles(Instruction &I) {
37223722
if (!Shuffle->hasNUsesOrMore(1u))
37233723
continue;
37243724

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

0 commit comments

Comments
 (0)