Skip to content

Commit a6e9bbf

Browse files
committed
fix lint
1 parent eb8da2a commit a6e9bbf

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
@@ -6378,7 +6378,8 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
63786378
if (OpOpcode == ISD::ZERO_EXTEND) { // (zext (zext x)) -> (zext x)
63796379
SDNodeFlags Flags;
63806380
Flags.setNonNeg(N1->getFlags().hasNonNeg());
6381-
SDValue NewVal = getNode(ISD::ZERO_EXTEND, DL, VT, N1.getOperand(0), Flags);
6381+
SDValue NewVal =
6382+
getNode(ISD::ZERO_EXTEND, DL, VT, N1.getOperand(0), Flags);
63826383
transferDbgValues(N1, NewVal);
63836384
return NewVal;
63846385
}

0 commit comments

Comments
 (0)