Skip to content

Commit 4c56096

Browse files
committed
[X86] Fix shadow variable warning. NFC.
Repeated Ops variable.
1 parent 8327c2c commit 4c56096

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
@@ -42526,9 +42526,9 @@ static SDValue combineTargetShuffle(SDValue N, const SDLoc &DL,
4252642526
DAG.getVectorIdxConstant(0, DL));
4252742527
}
4252842528
}
42529-
SmallVector<SDValue, 2> Ops;
42529+
SmallVector<SDValue, 2> SrcOps;
4253042530
SmallVector<int, 32> Mask;
42531-
if (getTargetShuffleMask(N, /*AllowSentinelZero=*/false, Ops, Mask)) {
42531+
if (getTargetShuffleMask(N, /*AllowSentinelZero=*/false, SrcOps, Mask)) {
4253242532
assert(Mask.size() == NumElts && "Unexpected shuffle mask size");
4253342533
SDValue V1 = peekThroughBitcasts(N.getOperand(0));
4253442534
SDValue V2 = peekThroughBitcasts(N.getOperand(2));

0 commit comments

Comments
 (0)