mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
gdb: remove add_alias_cmd overload that accepts a string
Same idea as previous patch, but for add_alias_cmd. Remove the overload that accepts the target command as a string (the target command name), leaving only the one that takes the cmd_list_element. gdb/ChangeLog: * command.h (add_alias_cmd): Accept target as cmd_list_element. Update callers. Change-Id: I546311f411e9e7da9302322d6ffad4e6c56df266
This commit is contained in:
@ -1212,10 +1212,11 @@ _initialize_windows_tdep ()
|
||||
= gdbarch_data_register_post_init (init_windows_gdbarch_data);
|
||||
|
||||
init_w32_command_list ();
|
||||
add_cmd ("thread-information-block", class_info, display_tib,
|
||||
_("Display thread information block."),
|
||||
&info_w32_cmdlist);
|
||||
add_alias_cmd ("tib", "thread-information-block", class_info, 1,
|
||||
cmd_list_element *info_w32_thread_information_block_cmd
|
||||
= add_cmd ("thread-information-block", class_info, display_tib,
|
||||
_("Display thread information block."),
|
||||
&info_w32_cmdlist);
|
||||
add_alias_cmd ("tib", info_w32_thread_information_block_cmd, class_info, 1,
|
||||
&info_w32_cmdlist);
|
||||
|
||||
add_setshow_boolean_cmd ("show-all-tib", class_maintenance,
|
||||
|
Reference in New Issue
Block a user