summaryrefslogtreecommitdiff
path: root/gdb/arm-tdep.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-02-09 21:56:12 +0000
committerAndrew Cagney <cagney@redhat.com>2005-02-09 21:56:12 +0000
commit4352ca614d3c45c4d52932141880215a5caa46c4 (patch)
tree05ad7bcb909af2d89ad27c78c125bd392573b148 /gdb/arm-tdep.c
parent9f0fc995761f452fd4704164591a3b9d152fda4b (diff)
downloadgdb-4352ca614d3c45c4d52932141880215a5caa46c4.tar.gz
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/arm-tdep.c')
-rw-r--r--gdb/arm-tdep.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c
index b016b7072b9..6c6664f9a1e 100644
--- a/gdb/arm-tdep.c
+++ b/gdb/arm-tdep.c
@@ -2461,19 +2461,6 @@ set_disassembly_style (void)
set_arm_regname_option (current);
}
-/* arm_othernames implements the "othernames" command. This is deprecated
- by the "set arm disassembly" command. */
-
-static void
-arm_othernames (char *names, int n)
-{
- /* Circle through the various flavors. */
- current_option = (current_option + 1) % num_disassembly_options;
-
- disassembly_style = valid_disassembly_styles[current_option];
- set_disassembly_style ();
-}
-
/* Test whether the coff symbol specific value corresponds to a Thumb
function. */
@@ -2892,20 +2879,6 @@ _initialize_arm_tdep (void)
helptext = ui_file_xstrdup (stb, &length);
ui_file_delete (stb);
- /* Add the deprecated disassembly-flavor command. */
- add_setshow_enum_cmd("disassembly-flavor", no_class,
- valid_disassembly_styles,
- &disassembly_style,
- _("Set the disassembly style."),
- _("Show the disassembly style."),
- helptext,
- _("The disassembly style is \"%s\"."),
- set_disassembly_style_sfunc, NULL,
- &setlist, &showlist, &new_set, &new_show);
- deprecate_cmd (new_set, "set arm disassembly");
- deprecate_cmd (new_show, "show arm disassembly");
-
- /* And now add the new interface. */
add_setshow_enum_cmd("disassembler", no_class,
valid_disassembly_styles, &disassembly_style,
_("Set the disassembly style."),
@@ -2936,11 +2909,6 @@ vfp - VFP co-processor."),
set_fp_model_sfunc, show_fp_model,
&setarmcmdlist, &showarmcmdlist, NULL, NULL);
- /* Add the deprecated "othernames" command. */
- deprecate_cmd (add_com ("othernames", class_obscure, arm_othernames,
- _("Switch to the next set of register names.")),
- "set arm disassembly");
-
/* Debugging flag. */
add_setshow_boolean_cmd ("arm", class_maintenance, &arm_debug,
_("Set ARM debugging."),