Skip to content

Commit 0cc6023

Browse files
committed
[X86] LowerFP_TO_INT - remove duplicate SDLoc. NFC.
1 parent b5da0cd commit 0cc6023

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21171,8 +21171,8 @@ SDValue X86TargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) const {
2117121171
LC = RTLIB::getFPTOUINT(SrcVT, VT);
2117221172

2117321173
MakeLibCallOptions CallOptions;
21174-
std::pair<SDValue, SDValue> Tmp = makeLibCall(DAG, LC, VT, Src, CallOptions,
21175-
SDLoc(Op), Chain);
21174+
std::pair<SDValue, SDValue> Tmp =
21175+
makeLibCall(DAG, LC, VT, Src, CallOptions, dl, Chain);
2117621176

2117721177
if (IsStrict)
2117821178
return DAG.getMergeValues({ Tmp.first, Tmp.second }, dl);

0 commit comments

Comments
 (0)