mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-16 12:24:19 +08:00
2002-11-10 Andrew Cagney <ac131313@redhat.com>
* breakpoint.h (deprecated_frame_in_dummy): Rename frame_in_dummy. * stack.c (print_frame_info_base): Update. (print_frame_info_base, frame_info): Update. * sparc-tdep.c (sparc_init_extra_frame_info): Update. (sparc_frame_saved_pc): Update. * ada-lang.c (find_printable_frame): Update. * breakpoint.c (deprecated_frame_in_dummy): Update.
This commit is contained in:
@ -315,7 +315,7 @@ sparc_init_extra_frame_info (int fromleaf, struct frame_info *fi)
|
||||
it later. */
|
||||
if (fi->next->next != NULL
|
||||
&& (fi->next->next->signal_handler_caller
|
||||
|| frame_in_dummy (fi->next->next))
|
||||
|| deprecated_frame_in_dummy (fi->next->next))
|
||||
&& frameless_look_for_prologue (fi->next))
|
||||
{
|
||||
/* A frameless function interrupted by a signal did not change
|
||||
@ -488,7 +488,7 @@ sparc_frame_saved_pc (struct frame_info *frame)
|
||||
else if (frame->extra_info->in_prologue ||
|
||||
(frame->next != NULL &&
|
||||
(frame->next->signal_handler_caller ||
|
||||
frame_in_dummy (frame->next)) &&
|
||||
deprecated_frame_in_dummy (frame->next)) &&
|
||||
frameless_look_for_prologue (frame)))
|
||||
{
|
||||
/* A frameless function interrupted by a signal did not save
|
||||
|
Reference in New Issue
Block a user