@@ -7931,8 +7931,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
79317931 // But not if skipping the insert could make the result more poisonous.
79327932 if (N2.isUndef()) {
79337933 if (N3C && VT.isFixedLengthVector()) {
7934- APInt EltMask = APInt::getOneBitSet(VT.getVectorNumElements(),
7935- N3C->getZExtValue());
7934+ APInt EltMask =
7935+ APInt::getOneBitSet(VT.getVectorNumElements(), N3C->getZExtValue());
79367936 if (isGuaranteedNotToBePoison(N1, EltMask))
79377937 return N1;
79387938 } else if (isGuaranteedNotToBePoison(N1))
@@ -7985,8 +7985,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
79857985 if (VT.isFixedLengthVector() && N2VT.isFixedLengthVector()) {
79867986 unsigned LoBit = N3->getAsZExtVal();
79877987 unsigned HiBit = LoBit + N2VT.getVectorNumElements();
7988- APInt EltMask = APInt::getBitsSet(VT.getVectorNumElements(),
7989- LoBit, HiBit);
7988+ APInt EltMask =
7989+ APInt::getBitsSet(VT.getVectorNumElements(), LoBit, HiBit);
79907990 if (isGuaranteedNotToBePoison(N2.getOperand(0), ~EltMask))
79917991 return N2.getOperand(0);
79927992 } else if (isGuaranteedNotToBePoison(N2.getOperand(0)))
@@ -7999,8 +7999,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
79997999 if (VT.isFixedLengthVector()) {
80008000 unsigned LoBit = N3->getAsZExtVal();
80018001 unsigned HiBit = LoBit + N2VT.getVectorNumElements();
8002- APInt EltMask = APInt::getBitsSet(VT.getVectorNumElements(),
8003- LoBit, HiBit);
8002+ APInt EltMask =
8003+ APInt::getBitsSet(VT.getVectorNumElements(), LoBit, HiBit);
80048004 if (isGuaranteedNotToBePoison(N1, EltMask))
80058005 return N1;
80068006 } else if (isGuaranteedNotToBePoison(N1))
0 commit comments