@@ -7920,8 +7920,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
79207920 // But not if skipping the insert could make the result more poisonous.
79217921 if (N2.isUndef()) {
79227922 if (N3C && VT.isFixedLengthVector()) {
7923- APInt EltMask = APInt::getOneBitSet(VT.getVectorNumElements(),
7924- N3C->getZExtValue());
7923+ APInt EltMask =
7924+ APInt::getOneBitSet(VT.getVectorNumElements(), N3C->getZExtValue());
79257925 if (isGuaranteedNotToBePoison(N1, EltMask))
79267926 return N1;
79277927 } else if (isGuaranteedNotToBePoison(N1))
@@ -7974,8 +7974,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
79747974 if (VT.isFixedLengthVector() && N2VT.isFixedLengthVector()) {
79757975 unsigned LoBit = N3->getAsZExtVal();
79767976 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);
79797979 if (isGuaranteedNotToBePoison(N2.getOperand(0), ~EltMask))
79807980 return N2.getOperand(0);
79817981 } else if (isGuaranteedNotToBePoison(N2.getOperand(0)))
@@ -7988,8 +7988,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
79887988 if (VT.isFixedLengthVector()) {
79897989 unsigned LoBit = N3->getAsZExtVal();
79907990 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);
79937993 if (isGuaranteedNotToBePoison(N1, EltMask))
79947994 return N1;
79957995 } else if (isGuaranteedNotToBePoison(N1))
0 commit comments