Skip to content

Commit fc5c9c6

Browse files
committed
fix lint
1 parent aae650e commit fc5c9c6

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
@@ -10994,10 +10994,9 @@ SDValue DAGCombiner::visitSRL(SDNode *N) {
1099410994
ZExt.getValueType().getScalarSizeInBits() -
1099510995
ZExt.getOperand(0).getValueType().getScalarSizeInBits();
1099610996
if (N1C->getZExtValue() <= NumLeadingZeros) {
10997-
return DAG.getNode(
10998-
N0.getOpcode(), SDLoc(N0), VT,
10999-
DAG.getNode(ISD::SRL, SDLoc(N0), VT, Other, N1),
11000-
ZExt);
10997+
return DAG.getNode(N0.getOpcode(), SDLoc(N0), VT,
10998+
DAG.getNode(ISD::SRL, SDLoc(N0), VT, Other, N1),
10999+
ZExt);
1100111000
}
1100211001
}
1100311002
}

0 commit comments

Comments
 (0)