* frv-tdep.c (frv_frame_this_id): Call inside_entry_func()
instead of deprecated_inside_entry_file().
This commit is contained in:
parent
1485d690a8
commit
0f4d7c5207
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-10-14 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* frv-tdep.c (frv_frame_this_id): Call inside_entry_func()
|
||||
instead of deprecated_inside_entry_file().
|
||||
|
||||
2003-10-14 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* sh-tdep.c: Fix copy/paste hangover in comment.
|
||||
|
|
|
@ -1009,7 +1009,7 @@ frv_frame_this_id (struct frame_info *next_frame,
|
|||
|
||||
/* This is meant to halt the backtrace at "_start". Make sure we
|
||||
don't halt it at a generic dummy frame. */
|
||||
if (deprecated_inside_entry_file (func))
|
||||
if (inside_entry_func (func))
|
||||
return;
|
||||
|
||||
/* Check if the stack is empty. */
|
||||
|
|
Loading…
Reference in a new issue