Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
LGTM, cheers.
test/MC/AArch64/SVE/ldnt1b-diagnostics.s | ||
---|---|---|
13 ↗ | (On Diff #144571) | Just curious, but what happens if MUL VL is excluded? Is it just syntactic sugar? |
test/MC/AArch64/SVE/ldnt1b-diagnostics.s | ||
---|---|---|
13 ↗ | (On Diff #144571) | If the 'mul vl' is omitted you get an invalid operand on the ']' token. Basically, the ', mul vl' is parsed and re-inserted as a literal string token (in parseOptionalMulVl), which is then matched to the literal string in the instruction definition. |