[nfc] Silent gcc warning

llvm-svn: 369266
This commit is contained in:
Serge Guelton 2019-08-19 14:40:33 +00:00
parent 42336682b2
commit a023d6b7de
1 changed files with 2 additions and 3 deletions

View File

@ -2963,9 +2963,8 @@ bool AArch64InstructionSelector::selectUnmergeValues(
const LLT NarrowTy = MRI.getType(I.getOperand(0).getReg());
const LLT WideTy = MRI.getType(SrcReg);
(void)WideTy;
assert(WideTy.isVector() ||
WideTy.getSizeInBits() == 128 &&
"can only unmerge from vector or s128 types!");
assert((WideTy.isVector() || WideTy.getSizeInBits() == 128) &&
"can only unmerge from vector or s128 types!");
assert(WideTy.getSizeInBits() > NarrowTy.getSizeInBits() &&
"source register size too small!");