diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 13:59:01 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 14:00:08 -0400 |
commit | 5e84b7eefba5b4299b0ca80aecc5d4e99c195c1e (patch) | |
tree | 65d675353e6cb9f90711947244a8f78d156f7021 /gdb/macrocmd.c | |
parent | e0f25bd9717c7973197095523db7c1cdc956cea2 (diff) | |
download | fsf-binutils-gdb-5e84b7eefba5b4299b0ca80aecc5d4e99c195c1e.zip fsf-binutils-gdb-5e84b7eefba5b4299b0ca80aecc5d4e99c195c1e.tar.gz fsf-binutils-gdb-5e84b7eefba5b4299b0ca80aecc5d4e99c195c1e.tar.bz2 |
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
Diffstat (limited to 'gdb/macrocmd.c')
-rw-r--r-- | gdb/macrocmd.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gdb/macrocmd.c b/gdb/macrocmd.c index 4e4a68d..28a57f7 100644 --- a/gdb/macrocmd.c +++ b/gdb/macrocmd.c @@ -457,12 +457,15 @@ _initialize_macrocmd () _("Prefix for commands dealing with C preprocessor macros."), ¯olist, 0, &cmdlist); - add_cmd ("expand", no_class, macro_expand_command, _("\ + cmd_list_element *macro_expand_cmd + = add_cmd ("expand", no_class, macro_expand_command, _("\ Fully expand any C/C++ preprocessor macro invocations in EXPRESSION.\n\ Show the expanded expression."), - ¯olist); - add_alias_cmd ("exp", "expand", no_class, 1, ¯olist); - add_cmd ("expand-once", no_class, macro_expand_once_command, _("\ + ¯olist); + add_alias_cmd ("exp", macro_expand_cmd, no_class, 1, ¯olist); + + cmd_list_element *macro_expand_once_cmd + = add_cmd ("expand-once", no_class, macro_expand_once_command, _("\ Expand C/C++ preprocessor macro invocations appearing directly in EXPRESSION.\n\ Show the expanded expression.\n\ \n\ @@ -473,8 +476,8 @@ introduces further macro invocations, those are left unexpanded.\n\ `macro expand-once' helps you see how a particular macro expands,\n\ whereas `macro expand' shows you how all the macros involved in an\n\ expression work together to yield a pre-processed expression."), - ¯olist); - add_alias_cmd ("exp1", "expand-once", no_class, 1, ¯olist); + ¯olist); + add_alias_cmd ("exp1", macro_expand_once_cmd, no_class, 1, ¯olist); add_info ("macro", info_macro_command, _("Show the definition of MACRO, and it's source location.\n\ |