This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] frv-tdep.c: Eliminate call to inside_entry_func()


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))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]