Skip to content

Commit ad80f73

Browse files
[X86] Fix a warning
This patch fixes: llvm/lib/Target/X86/X86ISelLowering.cpp:39622:12: error: explicitly assigning value of variable of type 'SDValue' to itself [-Werror,-Wself-assign-overloaded]
1 parent 138a899 commit ad80f73

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39619,7 +39619,6 @@ static bool matchBinaryPermuteShuffle(
3961939619
SmallVector<int, 16> ShiftMask(NumMaskElts, SM_SentinelZero);
3962039620
std::iota(ShiftMask.begin() + ZeroLo, ShiftMask.end(), 0);
3962139621
if (isTargetShuffleEquivalent(MaskVT, Mask, ShiftMask, DAG, V1)) {
39622-
V1 = V1;
3962339622
V2 = getZeroVector(AlignVT, Subtarget, DAG, DL);
3962439623
Shuffle = X86ISD::VALIGN;
3962539624
ShuffleVT = AlignVT;

0 commit comments

Comments
 (0)