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]

[commit] Don't use inside_entry_file in mips-tdep.c


Its no longer needed as inside_main_func stops things before they get interesting.

committed,
Andrew
2003-11-22  Andrew Cagney  <cagney@redhat.com>

	* mips-tdep.c (mips_frame_chain): Delete call to
	deprecated_inside_entry_file.

Index: mips-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/mips-tdep.c,v
retrieving revision 1.258
diff -u -r1.258 mips-tdep.c
--- mips-tdep.c	22 Nov 2003 23:24:16 -0000	1.258
+++ mips-tdep.c	23 Nov 2003 01:17:55 -0000
@@ -2517,9 +2517,6 @@
   CORE_ADDR tmp;
   CORE_ADDR saved_pc = DEPRECATED_FRAME_SAVED_PC (frame);
 
-  if (saved_pc == 0 || deprecated_inside_entry_file (saved_pc))
-    return 0;
-
   /* Check if the PC is inside a call stub.  If it is, fetch the
      PC of the caller of that stub.  */
   if ((tmp = SKIP_TRAMPOLINE_CODE (saved_pc)) != 0)

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