mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 20:14:06 +08:00
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.
This commit is contained in:
parent
96f6015419
commit
7376b4c200
@ -1,5 +1,12 @@
|
|||||||
2005-02-09 Andrew Cagney <cagney@gnu.org>
|
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.
|
||||||
|
|
||||||
* NEWS: Mention removed commands.
|
* NEWS: Mention removed commands.
|
||||||
* m68hc11-tdep.c (show_regs): Delete, unused.
|
* m68hc11-tdep.c (show_regs): Delete, unused.
|
||||||
(_initialize_m68hc11_tdep): Delete deprecated "regs" command.
|
(_initialize_m68hc11_tdep): Delete deprecated "regs" command.
|
||||||
|
@ -2886,7 +2886,7 @@ _initialize_arm_tdep (void)
|
|||||||
helptext,
|
helptext,
|
||||||
_("The disassembly style is \"%s\"."),
|
_("The disassembly style is \"%s\"."),
|
||||||
set_disassembly_style_sfunc, NULL,
|
set_disassembly_style_sfunc, NULL,
|
||||||
&setarmcmdlist, &showarmcmdlist, NULL, NULL);
|
&setarmcmdlist, &showarmcmdlist);
|
||||||
|
|
||||||
add_setshow_boolean_cmd ("apcs32", no_class, &arm_apcs_32,
|
add_setshow_boolean_cmd ("apcs32", no_class, &arm_apcs_32,
|
||||||
_("Set usage of ARM 32-bit mode."),
|
_("Set usage of ARM 32-bit mode."),
|
||||||
@ -2907,7 +2907,7 @@ softvfp - Software FP with pure-endian doubles.\n\
|
|||||||
vfp - VFP co-processor."),
|
vfp - VFP co-processor."),
|
||||||
_("The floating point type is \"%s\"."),
|
_("The floating point type is \"%s\"."),
|
||||||
set_fp_model_sfunc, show_fp_model,
|
set_fp_model_sfunc, show_fp_model,
|
||||||
&setarmcmdlist, &showarmcmdlist, NULL, NULL);
|
&setarmcmdlist, &showarmcmdlist);
|
||||||
|
|
||||||
/* Debugging flag. */
|
/* Debugging flag. */
|
||||||
add_setshow_boolean_cmd ("arm", class_maintenance, &arm_debug,
|
add_setshow_boolean_cmd ("arm", class_maintenance, &arm_debug,
|
||||||
|
@ -419,19 +419,15 @@ add_setshow_enum_cmd (char *name,
|
|||||||
cmd_sfunc_ftype *set_func,
|
cmd_sfunc_ftype *set_func,
|
||||||
cmd_sfunc_ftype *show_func,
|
cmd_sfunc_ftype *show_func,
|
||||||
struct cmd_list_element **set_list,
|
struct cmd_list_element **set_list,
|
||||||
struct cmd_list_element **show_list,
|
struct cmd_list_element **show_list)
|
||||||
struct cmd_list_element **set_result,
|
|
||||||
struct cmd_list_element **show_result)
|
|
||||||
{
|
{
|
||||||
struct cmd_list_element *c;
|
struct cmd_list_element *c;
|
||||||
add_setshow_cmd_full (name, class, var_enum, var,
|
add_setshow_cmd_full (name, class, var_enum, var,
|
||||||
set_doc, show_doc, help_doc, print,
|
set_doc, show_doc, help_doc, print,
|
||||||
set_func, show_func,
|
set_func, show_func,
|
||||||
set_list, show_list,
|
set_list, show_list,
|
||||||
&c, show_result);
|
&c, NULL);
|
||||||
c->enums = enumlist;
|
c->enums = enumlist;
|
||||||
if (set_result)
|
|
||||||
*set_result = c;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Add an auto-boolean command named NAME to both the set and show
|
/* Add an auto-boolean command named NAME to both the set and show
|
||||||
|
@ -234,9 +234,7 @@ extern void add_setshow_enum_cmd (char *name,
|
|||||||
cmd_sfunc_ftype *set_func,
|
cmd_sfunc_ftype *set_func,
|
||||||
cmd_sfunc_ftype *show_func,
|
cmd_sfunc_ftype *show_func,
|
||||||
struct cmd_list_element **set_list,
|
struct cmd_list_element **set_list,
|
||||||
struct cmd_list_element **show_list,
|
struct cmd_list_element **show_list);
|
||||||
struct cmd_list_element **set_result,
|
|
||||||
struct cmd_list_element **show_result);
|
|
||||||
|
|
||||||
extern void add_setshow_auto_boolean_cmd (char *name,
|
extern void add_setshow_auto_boolean_cmd (char *name,
|
||||||
enum command_class class,
|
enum command_class class,
|
||||||
|
@ -5189,8 +5189,7 @@ This option can be set to one of:\n\
|
|||||||
saved GP register size from information contained in the executable.\n\
|
saved GP register size from information contained in the executable.\n\
|
||||||
(default: auto)", "\
|
(default: auto)", "\
|
||||||
Size of general purpose registers saved on the stack is %s.\n",
|
Size of general purpose registers saved on the stack is %s.\n",
|
||||||
NULL, NULL, &setmipscmdlist, &showmipscmdlist,
|
NULL, NULL, &setmipscmdlist, &showmipscmdlist);
|
||||||
NULL, NULL);
|
|
||||||
|
|
||||||
/* Allow the user to override the argument stack size. */
|
/* Allow the user to override the argument stack size. */
|
||||||
add_setshow_enum_cmd ("stack-arg-size", class_obscure,
|
add_setshow_enum_cmd ("stack-arg-size", class_obscure,
|
||||||
@ -5203,8 +5202,7 @@ This option can be set to one of:\n\
|
|||||||
auto - Allow GDB to determine the correct setting from the current\n\
|
auto - Allow GDB to determine the correct setting from the current\n\
|
||||||
target and executable (default)", "\
|
target and executable (default)", "\
|
||||||
The amount of stack space reserved for each argument is %s.\n",
|
The amount of stack space reserved for each argument is %s.\n",
|
||||||
NULL, NULL, &setmipscmdlist, &showmipscmdlist,
|
NULL, NULL, &setmipscmdlist, &showmipscmdlist);
|
||||||
NULL, NULL);
|
|
||||||
|
|
||||||
/* Allow the user to override the ABI. */
|
/* Allow the user to override the ABI. */
|
||||||
c = add_set_enum_cmd
|
c = add_set_enum_cmd
|
||||||
|
Loading…
Reference in New Issue
Block a user