[llvm] [ARM][TableGen][MC] Change the ARM mnemonic operands to be optional for ASM parsing (PR #83436)
Alfie Richards via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 4 07:41:22 PST 2024
================
@@ -1474,7 +1513,7 @@ void AsmMatcherInfo::buildOperandMatchInfo() {
OperandMask |= maskTrailingOnes<unsigned>(NumOptionalOps + 1)
<< (i - NumOptionalOps);
}
- if (Op.Class->IsOptional)
+ if (Op.Class->IsOptional && Op.Class->OptionalShouldOffsetCustomParsers)
----------------
AlfieRichardsArm wrote:
It turns out this was a symptom of the remaining hacks surrounding VPTPred not being optional ):
I am going to try make this optional also, thank you for catching this
https://github.com/llvm/llvm-project/pull/83436
More information about the llvm-commits
mailing list