Skip to content

Commit 6c44e39

Browse files
committed
[X86] combineShuffle - reuse SDLoc. NFCI.
1 parent 2d7f0b1 commit 6c44e39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40291,7 +40291,7 @@ static SDValue combineShuffle(SDNode *N, SelectionDAG &DAG,
4029140291
// Canonicalize SHUFFLE(BINOP(X,Y)) -> BINOP(SHUFFLE(X),SHUFFLE(Y)).
4029240292
// Perform this after other shuffle combines to allow inner shuffles to be
4029340293
// combined away first.
40294-
if (SDValue BinOp = canonicalizeShuffleWithBinOps(Op, DAG, SDLoc(N)))
40294+
if (SDValue BinOp = canonicalizeShuffleWithBinOps(Op, DAG, dl))
4029540295
return BinOp;
4029640296
}
4029740297

0 commit comments

Comments
 (0)