diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-09-22 13:43:25 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2021-10-28 10:44:18 -0400 |
commit | f54bdb6d2799c658e076f10e42222949dc51032d (patch) | |
tree | bd9804255bf472e93740a8b47b2f90d5bde939c3 /gdb/rs6000-tdep.c | |
parent | 5ad2694b1ebe123ea92fcee094a69bcdc9769985 (diff) | |
download | binutils-f54bdb6d2799c658e076f10e42222949dc51032d.zip binutils-f54bdb6d2799c658e076f10e42222949dc51032d.tar.gz binutils-f54bdb6d2799c658e076f10e42222949dc51032d.tar.bz2 |
gdb: add add_setshow_prefix_cmd
There's a common pattern to call add_basic_prefix_cmd and
add_show_prefix_cmd to add matching set and show commands. Add the
add_setshow_prefix_cmd function to factor that out and use it at a few
places.
Change-Id: I6e9e90a30e9efb7b255bf839cac27b85d7069cfd
Diffstat (limited to 'gdb/rs6000-tdep.c')
-rw-r--r-- | gdb/rs6000-tdep.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gdb/rs6000-tdep.c b/gdb/rs6000-tdep.c index 9c2bfca..78b4fd1 100644 --- a/gdb/rs6000-tdep.c +++ b/gdb/rs6000-tdep.c @@ -7411,13 +7411,11 @@ _initialize_rs6000_tdep () /* Add root prefix command for all "set powerpc"/"show powerpc" commands. */ - add_basic_prefix_cmd ("powerpc", no_class, - _("Various PowerPC-specific commands."), - &setpowerpccmdlist, 0, &setlist); - - add_show_prefix_cmd ("powerpc", no_class, - _("Various PowerPC-specific commands."), - &showpowerpccmdlist, 0, &showlist); + add_setshow_prefix_cmd ("powerpc", no_class, + _("Various PowerPC-specific commands."), + _("Various PowerPC-specific commands."), + &setpowerpccmdlist, &showpowerpccmdlist, + &setlist, &showlist); /* Add a command to allow the user to force the ABI. */ add_setshow_auto_boolean_cmd ("soft-float", class_support, |