Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
The exact line in the architecture manual is if wback && n == t && n != 31 then. I _think_ we already get the n != 31 case correct, because we will parse one operand to XZR and the other to SP, but could you please add a test for this?
llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | ||
---|---|---|
4123 | s/source/destination/ ? |
llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | ||
---|---|---|
4123 | What do you mean? Should I change the error message? What do you suggest? |
I changed the error message like you suggested and I also added more tests (suggested by @DavidSpickett )
LGTM
llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | ||
---|---|---|
4123 | The change you've made is what I meant: the last word of the message is referring to Xt, which is a destination register, not as source. |
s/source/destination/ ?