[PATCH] D149443: [ARM] add Thumb-1 8-bit movs/adds relocations to LLVM
Simon Wallis via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 2 07:41:01 PDT 2023
simonwallis2 added inline comments.
================
Comment at: llvm/lib/Target/ARM/ARMInstrThumb.td:998-1000
+ [(set tGPR:$Rd, (add tGPR:$Rn, tGPR:$Rm))]>, Sched<[WriteALU]> {
+ let DecoderMethod = "DecodeI8RelocInstruction";
+}
----------------
{ let DecoderMethod = "DecodeI8RelocInstruction"; }
applies to tADDi8, not tADDrr,
so it should be moved 10 lines earlier.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149443/new/
https://reviews.llvm.org/D149443
More information about the llvm-commits
mailing list