Fix broken assert.

llvm-svn: 214019
This commit is contained in:
Nick Lewycky 2014-07-26 05:44:15 +00:00
parent 24b283005d
commit d7c726c5e9
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ void DecodePSHUFBMask(const ConstantDataSequential *C,
ShuffleMask.push_back(SM_SentinelZero);
else {
int Index = Base + Element;
assert((Index >= 0 && Index < NumElements) ||
assert((Index >= 0 && Index < NumElements) &&
"Out of bounds shuffle index for pshub instruction!");
ShuffleMask.push_back(Index);
}