From: Kevin Buettner Date: Fri, 21 Nov 2003 21:36:23 +0000 (+0000) Subject: * frv-tdep.c (frv_frame_this_id): Eliminate call to X-Git-Tag: gdb_6_1-branchpoint~734 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3a3da38cb074f49dd121ff033281eb9f2a126079;p=thirdparty%2Fbinutils-gdb.git * frv-tdep.c (frv_frame_this_id): Eliminate call to inside_entry_func(). --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 400b0253090..4a50144a0bf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-11-21 Kevin Buettner + + * frv-tdep.c (frv_frame_this_id): Eliminate call to + inside_entry_func(). + 2003-11-20 Mark Kettenis * i386-tdep.c (i386_extract_return_value, diff --git a/gdb/frv-tdep.c b/gdb/frv-tdep.c index e08ebe4aa84..8be7124e3f2 100644 --- a/gdb/frv-tdep.c +++ b/gdb/frv-tdep.c @@ -1101,11 +1101,6 @@ frv_frame_this_id (struct frame_info *next_frame, /* The FUNC is easy. */ func = frame_func_unwind (next_frame); - /* This is meant to halt the backtrace at "_start". Make sure we - don't halt it at a generic dummy frame. */ - if (inside_entry_func (func)) - return; - /* Check if the stack is empty. */ msym_stack = lookup_minimal_symbol ("_stack", NULL, NULL); if (msym_stack && info->base == SYMBOL_VALUE_ADDRESS (msym_stack))