diff options
author | Tom Tromey <tom@tromey.com> | 2020-05-03 11:31:19 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-05-03 11:31:20 -0600 |
commit | 3b6acaee895303e1800f5a9e3c20127c185a1209 (patch) | |
tree | d4b8cfaaf780a7794aee8d33ee3cb6c43a5fa497 /gdb/dwarf2 | |
parent | c69ad65744134f0c28432cc7c5204b9950f0b2c7 (diff) | |
download | gdb-3b6acaee895303e1800f5a9e3c20127c185a1209.zip gdb-3b6acaee895303e1800f5a9e3c20127c185a1209.tar.gz gdb-3b6acaee895303e1800f5a9e3c20127c185a1209.tar.bz2 |
Update more calls to add_prefix_cmd
I looked at all the calls to add_prefix_cmd, and replaced them with
calls to add_basic_prefix_cmd or add_show_prefix_cmd when appropriate.
This makes gdb's command language a bit more regular. I don't think
there's a significant downside.
Note that this patch removes a couple of tests. The removed ones are
completely redundant.
gdb/ChangeLog
2020-05-03 Tom Tromey <tom@tromey.com>
* breakpoint.c (catch_command, tcatch_command): Remove.
(_initialize_breakpoint): Use add_basic_prefix_cmd,
add_show_prefix_cmd.
(set_breakpoint_cmd, show_breakpoint_cmd): Remove
* utils.c (set_internal_problem_cmd, show_internal_problem_cmd):
Remove.
(add_internal_problem_command): Use add_basic_prefix_cmd,
add_show_prefix_cmd.
* mips-tdep.c (set_mipsfpu_command): Remove.
(_initialize_mips_tdep): Use add_basic_prefix_cmd.
* dwarf2/index-cache.c (set_index_cache_command): Remove.
(_initialize_index_cache): Use add_basic_prefix_cmd.
* memattr.c (dummy_cmd): Remove.
(_initialize_mem): Use add_basic_prefix_cmd, add_show_prefix_cmd.
* tui/tui-win.c (set_tui_cmd, show_tui_cmd): Remove.
(_initialize_tui_win): Use add_basic_prefix_cmd,
add_show_prefix_cmd.
* cli/cli-logging.c (set_logging_command): Remove.
(_initialize_cli_logging): Use add_basic_prefix_cmd,
add_show_prefix_cmd.
(show_logging_command): Remove.
* target.c (target_command): Remove.
(add_target): Use add_basic_prefix_cmd.
gdb/testsuite/ChangeLog
2020-05-03 Tom Tromey <tom@tromey.com>
* gdb.base/sepdebug.exp: Remove "catch" test.
* gdb.base/break.exp: Remove "catch" test.
* gdb.base/default.exp: Update expected output.
Diffstat (limited to 'gdb/dwarf2')
-rw-r--r-- | gdb/dwarf2/index-cache.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/gdb/dwarf2/index-cache.c b/gdb/dwarf2/index-cache.c index 62fbe2a..23e938b 100644 --- a/gdb/dwarf2/index-cache.c +++ b/gdb/dwarf2/index-cache.c @@ -246,15 +246,6 @@ index_cache::make_index_filename (const bfd_build_id *build_id, return m_dir + SLASH_STRING + build_id_str + suffix; } -/* "set index-cache" handler. */ - -static void -set_index_cache_command (const char *arg, int from_tty) -{ - printf_unfiltered (_("\ -Missing arguments. See \"help set index-cache\" for help.\n")); -} - /* True when we are executing "show index-cache". This is used to improve the printout a little bit. */ static bool in_show_index_cache_command = false; @@ -341,9 +332,10 @@ _initialize_index_cache () warning (_("Couldn't determine a path for the index cache directory.")); /* set index-cache */ - add_prefix_cmd ("index-cache", class_files, set_index_cache_command, - _("Set index-cache options."), &set_index_cache_prefix_list, - "set index-cache ", false, &setlist); + add_basic_prefix_cmd ("index-cache", class_files, + _("Set index-cache options."), + &set_index_cache_prefix_list, + "set index-cache ", false, &setlist); /* show index-cache */ add_prefix_cmd ("index-cache", class_files, show_index_cache_command, |