1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[NFC] Silence gcc warning (-Wsign-compare)

llvm-svn: 271882
This commit is contained in:
Filipe Cabecinhas 2016-06-06 10:49:56 +00:00
parent bb0d5ffb41
commit 4ea419e23b

View File

@ -528,7 +528,7 @@ void DecodeVPERMIL2PMask(MVT VT, unsigned M2Z, ArrayRef<uint64_t> RawMask,
// Bits[2:1] - (Per Lane) PD Shuffle Mask.
// Bits[2:0] - (Per Lane) PS Shuffle Mask.
uint64_t Selector = RawMask[i];
int MatchBit = (Selector >> 3) & 0x1;
unsigned MatchBit = (Selector >> 3) & 0x1;
// M2Z[0:1] MatchBit
// 0Xb X Source selected by Selector index.