1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00

Fixed signed/unsigned warning.

llvm-svn: 273120
This commit is contained in:
Simon Pilgrim 2016-06-19 18:20:44 +00:00
parent d2e5703e8b
commit f2812a60c9

View File

@ -7134,7 +7134,7 @@ static bool isShuffleEquivalent(SDValue V1, SDValue V2, ArrayRef<int> Mask,
static bool isTargetShuffleEquivalent(ArrayRef<int> Mask,
ArrayRef<int> ExpectedMask) {
int Size = Mask.size();
if (Size != ExpectedMask.size())
if (Size != (int)ExpectedMask.size())
return false;
for (int i = 0; i < Size; ++i)