diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-09 23:15:01 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-09 23:15:01 +0000 |
commit | 7376b4c200a1d6e249a3b35d54f5a05068f966b2 (patch) | |
tree | 92d254be21abc207e3367ddde681cf5c47f4beb4 /gdb/arm-tdep.c | |
parent | 96f6015419297f1a6114e8619d70c449b8841846 (diff) | |
download | gdb-7376b4c200a1d6e249a3b35d54f5a05068f966b2.zip gdb-7376b4c200a1d6e249a3b35d54f5a05068f966b2.tar.gz gdb-7376b4c200a1d6e249a3b35d54f5a05068f966b2.tar.bz2 |
2005-02-09 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_enum_cmd): Drop set_result and
show_result parameters.
* mips-tdep.c (_initialize_mips_tdep): Update calls.
* command.h: Update declaration.
* arm-tdep.c (_initialize_arm_tdep, _initialize_arm_tdep): Update
calls.
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 6c6664f..0d12630 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -2886,7 +2886,7 @@ _initialize_arm_tdep (void) helptext, _("The disassembly style is \"%s\"."), set_disassembly_style_sfunc, NULL, - &setarmcmdlist, &showarmcmdlist, NULL, NULL); + &setarmcmdlist, &showarmcmdlist); add_setshow_boolean_cmd ("apcs32", no_class, &arm_apcs_32, _("Set usage of ARM 32-bit mode."), @@ -2907,7 +2907,7 @@ softvfp - Software FP with pure-endian doubles.\n\ vfp - VFP co-processor."), _("The floating point type is \"%s\"."), set_fp_model_sfunc, show_fp_model, - &setarmcmdlist, &showarmcmdlist, NULL, NULL); + &setarmcmdlist, &showarmcmdlist); /* Debugging flag. */ add_setshow_boolean_cmd ("arm", class_maintenance, &arm_debug, |