1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[nfc] Silent gcc warning

llvm-svn: 369266
This commit is contained in:
Serge Guelton 2019-08-19 14:40:33 +00:00
parent 71e346cddb
commit d9db87717d

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!");