1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fix signed/unsigned comparison warning. NFCI.

llvm-svn: 369213
This commit is contained in:
Simon Pilgrim 2019-08-18 17:26:30 +00:00
parent 6cb9bb2b52
commit 22ccc56aca

View File

@ -10095,8 +10095,8 @@ static bool isTargetShuffleEquivalent(ArrayRef<int> Mask,
// equivalent inputs that make the shuffles equivalent.
auto *BV1 = dyn_cast_or_null<BuildVectorSDNode>(V1);
auto *BV2 = dyn_cast_or_null<BuildVectorSDNode>(V2);
BV1 = ((BV1 && BV1->getNumOperands() != Size) ? nullptr : BV1);
BV2 = ((BV2 && BV2->getNumOperands() != Size) ? nullptr : BV2);
BV1 = ((BV1 && Size != (int)BV1->getNumOperands()) ? nullptr : BV1);
BV2 = ((BV2 && Size != (int)BV2->getNumOperands()) ? nullptr : BV2);
for (int i = 0; i < Size; ++i) {
if (Mask[i] == SM_SentinelUndef || Mask[i] == ExpectedMask[i])