* i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
frameless_look_for_prologue, such that we actually call this function.
This commit is contained in:
parent
b6f83f2a0c
commit
4fd667e983
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2002-07-03 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
|
||||
frameless_look_for_prologue, such that we actually call this
|
||||
function.
|
||||
|
||||
2002-07-02 Joel Brobecker <brobecker@gnat.com>
|
||||
|
||||
* frame.h (frame_address_in_block): New function.
|
||||
|
|
|
@ -481,7 +481,7 @@ i386_frameless_signal_p (struct frame_info *frame)
|
|||
{
|
||||
return (frame->next
|
||||
&& frame->next->signal_handler_caller
|
||||
&& frameless_look_for_prologue);
|
||||
&& frameless_look_for_prologue (frame));
|
||||
}
|
||||
|
||||
/* Return the chain-pointer for FRAME. In the case of the i386, the
|
||||
|
|
Loading…
Reference in a new issue