Skip to content

Commit 55d53f5

Browse files
committed
[X86] Fix formatting
1 parent e6fc7f0 commit 55d53f5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53629,7 +53629,8 @@ static SDValue combinei64TruncSrlAdd(SDValue N, EVT VT, SelectionDAG &DAG,
5362953629
SDValue NewAddNode = DAG.getNode(ISD::ADD, DL, VT, Trunc, NewAddConst);
5363053630

5363153631
APInt CleanupSizeConstVal = (SrlConst - 32).zextOrTrunc(VT.getSizeInBits());
53632-
EVT CleanUpVT = EVT::getIntegerVT(*DAG.getContext(), CleanupSizeConstVal.getZExtValue());
53632+
EVT CleanUpVT =
53633+
EVT::getIntegerVT(*DAG.getContext(), CleanupSizeConstVal.getZExtValue());
5363353634
SDValue CleanUp = DAG.getAnyExtOrTrunc(NewAddNode, DL, CleanUpVT);
5363453635
return DAG.getAnyExtOrTrunc(CleanUp, DL, VT);
5363553636
}

0 commit comments

Comments
 (0)