diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-09 21:56:12 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-09 21:56:12 +0000 |
commit | 11dced61197b04a2a9653e6718dd939ebd63b077 (patch) | |
tree | f0bebca3769ab8ecb6d41e61b30af432ff8090ab /gdb/m68hc11-tdep.c | |
parent | 3be49e7a08c06ff93ce328e902b8cc33984de71b (diff) | |
download | gdb-11dced61197b04a2a9653e6718dd939ebd63b077.zip gdb-11dced61197b04a2a9653e6718dd939ebd63b077.tar.gz gdb-11dced61197b04a2a9653e6718dd939ebd63b077.tar.bz2 |
2005-02-09 Andrew Cagney <cagney@gnu.org>
* NEWS: Mention removed commands.
* m68hc11-tdep.c (show_regs): Delete, unused.
(_initialize_m68hc11_tdep): Delete deprecated "regs" command.
* gdb-events.sh: Delete deprecated "set eventdebug" and "show
eventdebug" commands.
* gdb-events.c: Regenerate.
* gdbarch.sh: Delete deprecated "set archdebug" and "show
archdebug" commands.
* gdbarch.c: Regenerate.
* cli/cli-cmds.c (init_cli_cmds): Delete deprecated "set
remotedebug" and "show remotedebug".
* arm-tdep.c (_initialize_arm_tdep): Delete deprecated "set arm
disassembly-flavor", "show arm disassembly-flavor", and
"othernames" commands.
(arm_othernames): Delete unused function.
Diffstat (limited to 'gdb/m68hc11-tdep.c')
-rw-r--r-- | gdb/m68hc11-tdep.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/m68hc11-tdep.c b/gdb/m68hc11-tdep.c index 069ced5..63af22e 100644 --- a/gdb/m68hc11-tdep.c +++ b/gdb/m68hc11-tdep.c @@ -1157,14 +1157,6 @@ m68hc11_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, } } -/* Same as 'info reg' but prints the registers in a different way. */ -static void -show_regs (char *args, int from_tty) -{ - m68hc11_print_registers_info (current_gdbarch, gdb_stdout, - get_current_frame (), -1, 1); -} - static CORE_ADDR m68hc11_stack_align (CORE_ADDR addr) { @@ -1574,9 +1566,5 @@ _initialize_m68hc11_tdep (void) register_gdbarch_init (bfd_arch_m68hc11, m68hc11_gdbarch_init); register_gdbarch_init (bfd_arch_m68hc12, m68hc11_gdbarch_init); m68hc11_init_reggroups (); - - deprecate_cmd (add_com ("regs", class_vars, show_regs, - "Print all registers"), - "info registers"); } |