Ignore undef shuffle indices when checking for a VTRN shuffle. Radar 8290937.

llvm-svn: 111208
This commit is contained in:
Bob Wilson 2010-08-16 23:37:17 +00:00
parent c3e9df3cc0
commit c350e7a509
1 changed files with 1 additions and 0 deletions

View File

@ -3229,6 +3229,7 @@ static bool isVTRN_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT,
unsigned NumElts = VT.getVectorNumElements();
WhichResult = (M[0] == 0 ? 0 : 1);
for (unsigned i = 0; i < NumElts; i += 2) {
if (M[i] < 0) continue;
if ((unsigned) M[i] != i + WhichResult ||
(unsigned) M[i+1] != i + WhichResult)
return false;