Skip to content

Commit ad5d90a

Browse files
committed
fix lint
1 parent 0f34707 commit ad5d90a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6266,7 +6266,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
62666266
if (OpOpcode == ISD::ZERO_EXTEND) { // (zext (zext x)) -> (zext x)
62676267
SDNodeFlags Flags;
62686268
Flags.setNonNeg(N1->getFlags().hasNonNeg());
6269-
SDValue NewVal = getNode(ISD::ZERO_EXTEND, DL, VT, N1.getOperand(0), Flags);
6269+
SDValue NewVal =
6270+
getNode(ISD::ZERO_EXTEND, DL, VT, N1.getOperand(0), Flags);
62706271
transferDbgValues(N1, NewVal);
62716272
return NewVal;
62726273
}

0 commit comments

Comments
 (0)