Skip to content

Commit 4b2cdbb

Browse files
committed
fix lint
1 parent 6665d07 commit 4b2cdbb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11001,10 +11001,9 @@ SDValue DAGCombiner::visitSRL(SDNode *N) {
1100111001
ZExt.getValueType().getScalarSizeInBits() -
1100211002
ZExt.getOperand(0).getValueType().getScalarSizeInBits();
1100311003
if (N1C->getZExtValue() <= NumLeadingZeros) {
11004-
return DAG.getNode(
11005-
N0.getOpcode(), SDLoc(N0), VT,
11006-
DAG.getNode(ISD::SRL, SDLoc(N0), VT, Other, N1),
11007-
ZExt);
11004+
return DAG.getNode(N0.getOpcode(), SDLoc(N0), VT,
11005+
DAG.getNode(ISD::SRL, SDLoc(N0), VT, Other, N1),
11006+
ZExt);
1100811007
}
1100911008
}
1101011009
}

0 commit comments

Comments
 (0)