[PATCH] D57680: [llvm-objdump] Implement `-Mreg-names-raw`/`-std` options.
Igor Kudrin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 5 04:20:10 PST 2019
ikudrin marked 3 inline comments as done.
ikudrin added inline comments.
================
Comment at: lib/Target/ARM/ARMRegisterInfo.td:16
// Registers are identified with 4-bit ID numbers.
-class ARMReg<bits<16> Enc, string n, list<Register> subregs = []> : Register<n> {
+class ARMReg<bits<16> Enc, string n, list<Register> subregs = [],
+ list<string> altNames = []> : Register<n, altNames> {
----------------
evgeny777 wrote:
> Can we simply use "r" + string(Enc) for `-Mreg-names-raw` ?
I don't think I understand you. Could you explain where in the code you expect that line to be added?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57680/new/
https://reviews.llvm.org/D57680
More information about the llvm-commits
mailing list