[PATCH] D123476: [MC][AVR] Implement decoding ST/LD

Ben Shi via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 10 18:53:25 PDT 2022


benshi001 added inline comments.


================
Comment at: llvm/test/MC/AVR/inst-ld.s:79
+; INST: ld r17, X
+; INST: ldd r30, Y+0
+; INST: ldd r19, Y+0
----------------
`ldd Rd, Y+0` is equivalant to `ld Rd, Y` in all factors: encoding, HW functionality and SW semantic.


================
Comment at: llvm/test/MC/AVR/inst-st.s:77
+; INST: st X, r17
+; INST: std Y+0, r30
+; INST: std Y+0, r19
----------------
`std Y+0, Rr` is equivalant to `ST Y, Rr` in all factors: encoding, HW functionality and SW semantic.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D123476/new/

https://reviews.llvm.org/D123476



More information about the llvm-commits mailing list