diff options
author | Michael Snyder <msnyder@specifix.com> | 2002-02-01 22:45:32 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2002-02-01 22:45:32 +0000 |
commit | 7cd085ca4f85a4946425442c6886b130bcefdb2f (patch) | |
tree | 86ef45c9f66378ec8d8f3830006ed8165cf0c80d /gdb/hppa-tdep.c | |
parent | fcfd71e7721c11233ee6bd581b4a65df80edf9f9 (diff) | |
download | gdb-7cd085ca4f85a4946425442c6886b130bcefdb2f.tar.gz |
2002-02-01 Michael Snyder <msnyder@redhat.com>
* hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 0fcf6bfae86..723c978a567 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -4686,8 +4686,9 @@ _initialize_hppa_tdep (void) "Print unwind table entry at given address.", &maintenanceprintlist); - add_com ("xbreak", class_breakpoint, break_at_finish_command, - concat ("Set breakpoint at procedure exit. \n\ + deprecate_cmd (add_com ("xbreak", class_breakpoint, + break_at_finish_command, + concat ("Set breakpoint at procedure exit. \n\ Argument may be function name, or \"*\" and an address.\n\ If function is specified, break at end of code for that function.\n\ If an address is specified, break at the end of the function that contains \n\ @@ -4697,21 +4698,23 @@ This is useful for breaking on return to a stack frame.\n\ \n\ Multiple breakpoints at one place are permitted, and useful if conditional.\n\ \n\ -Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL)); - add_com_alias ("xb", "xbreak", class_breakpoint, 1); - add_com_alias ("xbr", "xbreak", class_breakpoint, 1); - add_com_alias ("xbre", "xbreak", class_breakpoint, 1); - add_com_alias ("xbrea", "xbreak", class_breakpoint, 1); - - c = add_com ("txbreak", class_breakpoint, tbreak_at_finish_command, - "Set temporary breakpoint at procedure exit. Either there should\n\ -be no argument or the argument must be a depth.\n"); +Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL)), NULL); + deprecate_cmd (add_com_alias ("xb", "xbreak", class_breakpoint, 1), NULL); + deprecate_cmd (add_com_alias ("xbr", "xbreak", class_breakpoint, 1), NULL); + deprecate_cmd (add_com_alias ("xbre", "xbreak", class_breakpoint, 1), NULL); + deprecate_cmd (add_com_alias ("xbrea", "xbreak", class_breakpoint, 1), NULL); + + deprecate_cmd (c = add_com ("txbreak", class_breakpoint, + tbreak_at_finish_command, +"Set temporary breakpoint at procedure exit. Either there should\n\ +be no argument or the argument must be a depth.\n"), NULL); c->completer = location_completer; - + if (xdb_commands) - add_com ("bx", class_breakpoint, break_at_finish_at_depth_command, - "Set breakpoint at procedure exit. Either there should\n\ -be no argument or the argument must be a depth.\n"); + deprecate_cmd (add_com ("bx", class_breakpoint, + break_at_finish_at_depth_command, +"Set breakpoint at procedure exit. Either there should\n\ +be no argument or the argument must be a depth.\n"), NULL); } /* Copy the function value from VALBUF into the proper location |