This if used to be an assert that got refactored into an if, but left the string literal behind.
Fixes PR41718
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359833
91177308-0d34-0410-b5e6-
96231b3b80d8
// has it as the last op.
if (NumOps == 9 && Desc.getOperandConstraint(2, MCOI::TIED_TO) == 0 &&
(Desc.getOperandConstraint(3, MCOI::TIED_TO) == 1 ||
- Desc.getOperandConstraint(8, MCOI::TIED_TO) == 1) &&
- "Instruction with 2 defs isn't gather?")
+ Desc.getOperandConstraint(8, MCOI::TIED_TO) == 1))
return 2;
return 0;
}