git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@346515 91177308-0d34-0410-b5e6-96231b3b80d8
@@ -1805,7 +1805,7 @@ bool ShuffleVectorInst::isExtractSubvectorMask(ArrayRef<int> Mask,
return false;
// Must be smaller (else this is an Identity shuffle).
- if (NumSrcElts <= Mask.size())
+ if (NumSrcElts <= (int)Mask.size())
// Find start of extraction, accounting that we may start with an UNDEF.