git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@369266
91177308-0d34-0410-b5e6-
96231b3b80d8
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!");