@@ -7920,8 +7920,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
7920
7920
// But not if skipping the insert could make the result more poisonous.
7921
7921
if (N2.isUndef()) {
7922
7922
if (N3C && VT.isFixedLengthVector()) {
7923
- APInt EltMask = APInt::getOneBitSet(VT.getVectorNumElements(),
7924
- N3C->getZExtValue());
7923
+ APInt EltMask =
7924
+ APInt::getOneBitSet(VT.getVectorNumElements(), N3C->getZExtValue());
7925
7925
if (isGuaranteedNotToBePoison(N1, EltMask))
7926
7926
return N1;
7927
7927
} else if (isGuaranteedNotToBePoison(N1))
@@ -7974,8 +7974,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
7974
7974
if (VT.isFixedLengthVector() && N2VT.isFixedLengthVector()) {
7975
7975
unsigned LoBit = N3->getAsZExtVal();
7976
7976
unsigned HiBit = LoBit + N2VT.getVectorNumElements();
7977
- APInt EltMask = APInt::getBitsSet(VT.getVectorNumElements(),
7978
- LoBit, HiBit);
7977
+ APInt EltMask =
7978
+ APInt::getBitsSet(VT.getVectorNumElements(), LoBit, HiBit);
7979
7979
if (isGuaranteedNotToBePoison(N2.getOperand(0), ~EltMask))
7980
7980
return N2.getOperand(0);
7981
7981
} else if (isGuaranteedNotToBePoison(N2.getOperand(0)))
@@ -7988,8 +7988,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
7988
7988
if (VT.isFixedLengthVector()) {
7989
7989
unsigned LoBit = N3->getAsZExtVal();
7990
7990
unsigned HiBit = LoBit + N2VT.getVectorNumElements();
7991
- APInt EltMask = APInt::getBitsSet(VT.getVectorNumElements(),
7992
- LoBit, HiBit);
7991
+ APInt EltMask =
7992
+ APInt::getBitsSet(VT.getVectorNumElements(), LoBit, HiBit);
7993
7993
if (isGuaranteedNotToBePoison(N1, EltMask))
7994
7994
return N1;
7995
7995
} else if (isGuaranteedNotToBePoison(N1))
0 commit comments