mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-01 07:11:45 +00:00
[x86] Fix signed vs. unsigned comparison.
llvm-svn: 228055
This commit is contained in:
parent
62df1f3764
commit
15e7a6bdd6
@ -7820,7 +7820,7 @@ static SDValue lowerVectorShuffleAsBitShift(SDLoc DL, MVT VT, SDValue V1,
|
||||
SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
|
||||
|
||||
int Size = Mask.size();
|
||||
assert(Size == VT.getVectorNumElements() && "Unexpected mask size");
|
||||
assert(Size == (int)VT.getVectorNumElements() && "Unexpected mask size");
|
||||
|
||||
// PSRL : (little-endian) right bit shift.
|
||||
// [ 1, zz, 3, zz]
|
||||
|
Loading…
x
Reference in New Issue
Block a user