diff options
author | Tom Tromey <tromey@adacore.com> | 2022-03-04 11:29:27 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-03-31 13:48:07 -0600 |
commit | 49a82d50c0ee41bf51db6899291a8beaea4e7e2a (patch) | |
tree | cf079ae28dd9a264a8d7d091899735d51676c941 /gdb/cli | |
parent | 0653f01479ecbcbf3c4dfa6083187a5b2c2258c2 (diff) | |
download | fsf-binutils-gdb-49a82d50c0ee41bf51db6899291a8beaea4e7e2a.zip fsf-binutils-gdb-49a82d50c0ee41bf51db6899291a8beaea4e7e2a.tar.gz fsf-binutils-gdb-49a82d50c0ee41bf51db6899291a8beaea4e7e2a.tar.bz2 |
Remove dbx mode
This patch removes gdb's dbx mode. Regression tested on x86-64 Fedora
34.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-cmds.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c index e12ccee..945fd35 100644 --- a/gdb/cli/cli-cmds.c +++ b/gdb/cli/cli-cmds.c @@ -2421,8 +2421,7 @@ User-defined commands.\n\ The commands in this class are those defined by the user.\n\ Use the \"define\" command to define a command."), &cmdlist); add_cmd ("support", class_support, _("Support facilities."), &cmdlist); - if (!dbx_commands) - add_cmd ("status", class_info, _("Status inquiries."), &cmdlist); + add_cmd ("status", class_info, _("Status inquiries."), &cmdlist); add_cmd ("files", class_files, _("Specifying and examining files."), &cmdlist); add_cmd ("breakpoints", class_breakpoint, @@ -2667,9 +2666,6 @@ can be shown using \"show listsize\".")); add_com_alias ("l", list_cmd, class_files, 1); - if (dbx_commands) - add_com_alias ("file", list_cmd, class_files, 1); - c = add_com ("disassemble", class_vars, disassemble_command, _("\ Disassemble a specified section of memory.\n\ Usage: disassemble[/m|/r|/s] START [, END]\n\ |