mirror of
https://github.com/RPCSX/llvm.git
synced 2025-05-13 10:56:01 +00:00
[X86] Remove else after return. NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272871 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c9dd8c46c2
commit
0a2f9f9514
@ -10938,10 +10938,9 @@ static SDValue lowerShuffleAsRepeatedMaskAndLanePermute(
|
|||||||
int &R = RepeatMask[j];
|
int &R = RepeatMask[j];
|
||||||
if (0 != ((M % NumElts) / NumLaneElts))
|
if (0 != ((M % NumElts) / NumLaneElts))
|
||||||
return false;
|
return false;
|
||||||
else if (0 <= R && R != M)
|
if (0 <= R && R != M)
|
||||||
return false;
|
return false;
|
||||||
else
|
R = M;
|
||||||
R = M;
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user