diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-09-18 22:39:21 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-09-18 22:39:21 +0000 |
commit | 779497948df1c4d95bafc2f2a82c640f2ebe1c3b (patch) | |
tree | debf0ee45e37cd464367f97681b096e8e21c8f05 /gdb/gdbarch.h | |
parent | 9e4d8df3409e397a45dfb6af5a6a4c78c58618b0 (diff) | |
download | gdb-779497948df1c4d95bafc2f2a82c640f2ebe1c3b.zip gdb-779497948df1c4d95bafc2f2a82c640f2ebe1c3b.tar.gz gdb-779497948df1c4d95bafc2f2a82c640f2ebe1c3b.tar.bz2 |
2003-09-17 Andrew Cagney <cagney@redhat.com>
* sparc-tdep.c (legacy_register_name): Delete function.
* mips-tdep.c (mips_dump_tdep): Do not print REGISTER_NAME.
(mips_gdbarch_init): Refer to MIPS_REGISTER_NAME in comments.
* infcmd.c (gdb_register_name): Delete variable.
* gdbarch.sh (SDB_REG_TO_REGNUM): Delete reference to
REGISTER_NAME and "tm.h".
* gdbarch.h, gdbarch.c: Regenerate.
* dpx2-nat.c (regmap): Refer to REGISTER_NAME and not
REGISTER_NAMES in comments.
* remote-st.c (get_reg_name), i386b-nat.c (tregmap): Ditto.
* m68klinux-nat.c (regmap): Ditto.
2003-09-18 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Delete
documentation on REGISTER_NAMES.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index 9991371..a328cfb 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -422,9 +422,7 @@ extern void set_gdbarch_dwarf_reg_to_regnum (struct gdbarch *gdbarch, gdbarch_dw #define DWARF_REG_TO_REGNUM(dwarf_regnr) (gdbarch_dwarf_reg_to_regnum (current_gdbarch, dwarf_regnr)) #endif -/* Convert from an sdb register number to an internal gdb register number. - This should be defined in tm.h, if REGISTER_NAMES is not set up - to map one to one onto the sdb register numbers. */ +/* Convert from an sdb register number to an internal gdb register number. */ typedef int (gdbarch_sdb_reg_to_regnum_ftype) (int sdb_regnr); extern int gdbarch_sdb_reg_to_regnum (struct gdbarch *gdbarch, int sdb_regnr); |