diff options
author | Fred Fish <fnf@specifix.com> | 2005-08-05 21:08:54 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2005-08-05 21:08:54 +0000 |
commit | 9c833c827518f1b9857da489901bd18fab3aa3c2 (patch) | |
tree | 96485891d011c79ab4c37036d9acaaa3606a4bf2 /gdb/stack.c | |
parent | 5545ea57294bd01b8a33e667e5b1fa4713e07905 (diff) | |
download | gdb-9c833c827518f1b9857da489901bd18fab3aa3c2.zip gdb-9c833c827518f1b9857da489901bd18fab3aa3c2.tar.gz gdb-9c833c827518f1b9857da489901bd18fab3aa3c2.tar.bz2 |
Reviewed and approved by Mark Kettenis <mark.kettenis@xs4all.nl>
2005-08-02 Fred Fish <fnf@specifix.com>
* defs.h (parse_frame_specification): Remove prototype.
* stack.c (parse_frame_specification): Add prototype and
make function static.
(frame_info): Move common code outside if..then..else.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 5a0c1f9..cd6e009 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -60,6 +60,8 @@ void _initialize_stack (void); /* Prototypes for local functions. */ +static struct frame_info *parse_frame_specification (char *frame_exp); + static void down_command (char *, int); static void down_silently_base (char *); @@ -844,7 +846,7 @@ parse_frame_specification_1 (const char *frame_exp, const char *message, error (_("Too many args in frame specification")); } -struct frame_info * +static struct frame_info * parse_frame_specification (char *frame_exp) { return parse_frame_specification_1 (frame_exp, NULL, NULL); @@ -932,15 +934,13 @@ frame_info (char *addr_exp, int from_tty) { printf_filtered (_("Stack level %d, frame at "), frame_relative_level (fi)); - deprecated_print_address_numeric (get_frame_base (fi), 1, gdb_stdout); - printf_filtered (":\n"); } else { printf_filtered (_("Stack frame at ")); - deprecated_print_address_numeric (get_frame_base (fi), 1, gdb_stdout); - printf_filtered (":\n"); } + deprecated_print_address_numeric (get_frame_base (fi), 1, gdb_stdout); + printf_filtered (":\n"); printf_filtered (" %s = ", pc_regname); deprecated_print_address_numeric (get_frame_pc (fi), 1, gdb_stdout); |