From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19350 invoked by alias); 21 Nov 2003 21:37:01 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 19341 invoked from network); 21 Nov 2003 21:37:00 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 21 Nov 2003 21:37:00 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id hALLaxH31634 for ; Fri, 21 Nov 2003 16:36:59 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id hALLaxw01980 for ; Fri, 21 Nov 2003 16:36:59 -0500 Received: from localhost.localdomain (vpn50-29.rdu.redhat.com [172.16.50.29]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id hALLax89011830 for ; Fri, 21 Nov 2003 16:36:59 -0500 Received: (from kev@localhost) by localhost.localdomain (8.11.6/8.11.6) id hALLarH20165 for gdb-patches@sources.redhat.com; Fri, 21 Nov 2003 14:36:53 -0700 Date: Fri, 21 Nov 2003 21:37:00 -0000 From: Kevin Buettner Message-Id: <1031121213653.ZM20164@localhost.localdomain> To: gdb-patches@sources.redhat.com Subject: [PATCH] frv-tdep.c: Eliminate call to inside_entry_func() MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-11/txt/msg00450.txt.bz2 I've just committed the patch below. * frv-tdep.c (frv_frame_this_id): Eliminate call to inside_entry_func(). Index: frv-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/frv-tdep.c,v retrieving revision 1.61 diff -u -p -r1.61 frv-tdep.c --- frv-tdep.c 7 Nov 2003 06:00:07 -0000 1.61 +++ frv-tdep.c 21 Nov 2003 21:34:30 -0000 @@ -1101,11 +1101,6 @@ frv_frame_this_id (struct frame_info *ne /* 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))