Skip to content

Commit c93af22

Browse files
committed
[X86] combineConstantPoolLoads - remove duplicate SDLoc. NFC.
1 parent 37e8c6c commit c93af22

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
@@ -52794,8 +52794,8 @@ static SDValue combineConstantPoolLoads(SDNode *N, const SDLoc &dl,
5279452794
getTargetConstantBitsFromNode(SDValue(User, 0), NumBits,
5279552795
UserUndefs, UserBits)) {
5279652796
if (MatchingBits(Undefs, UserUndefs, Bits, UserBits)) {
52797-
SDValue Extract = extractSubVector(
52798-
SDValue(User, 0), 0, DAG, SDLoc(N), RegVT.getSizeInBits());
52797+
SDValue Extract = extractSubVector(SDValue(User, 0), 0, DAG, dl,
52798+
RegVT.getSizeInBits());
5279952799
Extract = DAG.getBitcast(RegVT, Extract);
5280052800
return DCI.CombineTo(N, Extract, SDValue(User, 1));
5280152801
}

0 commit comments

Comments
 (0)