2004-02-02 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Tue, 3 Feb 2004 03:44:26 +0000 (03:44 +0000)
committerAndrew Cagney <cagney@redhat.com>
Tue, 3 Feb 2004 03:44:26 +0000 (03:44 +0000)
* vax-tdep.c (vax_frame_chain): Delete call to
deprecated_inside_entry_file.
* ns32k-tdep.c (ns32k_frame_chain): Ditto.

gdb/ChangeLog
gdb/ns32k-tdep.c
gdb/vax-tdep.c

index 63cda6c27c137cc272513451b823149b9ccea892..a51409f27039faaedd5e17c38bcbf0e574cbe457 100644 (file)
@@ -1,3 +1,9 @@
+2004-02-02  Andrew Cagney  <cagney@redhat.com>
+
+       * vax-tdep.c (vax_frame_chain): Delete call to
+       deprecated_inside_entry_file.
+       * ns32k-tdep.c (ns32k_frame_chain): Ditto.
+
 2004-02-02  Mark Kettenis  <kettenis@gnu.org>
 
        * dwarf2-frame.c (dwarf2_frame_cache): Deal with a return address
index 6726c8cc5f113759b1ba66d54c51ae376877e366..dc143bbc36b7a5e247ded70d1bc36ab0f7ca6973 100644 (file)
@@ -309,10 +309,6 @@ ns32k_frame_chain (struct frame_info *frame)
   /* In the case of the NS32000 series, the frame's nominal address is the
      FP value, and that address is saved at the previous FP value as a
      4-byte word.  */
-
-  if (deprecated_inside_entry_file (get_frame_pc (frame)))
-    return 0;
-
   return (read_memory_integer (get_frame_base (frame), 4));
 }
 
index 939c32713430cdde3a163f76b531eed161f65689..169b53286887e2f9eeacf1e6301ffed0fa8d9b43 100644 (file)
@@ -187,9 +187,6 @@ vax_frame_chain (struct frame_info *frame)
 {
   /* In the case of the VAX, the frame's nominal address is the FP value,
      and 12 bytes later comes the saved previous FP value as a 4-byte word.  */
-  if (deprecated_inside_entry_file (get_frame_pc (frame)))
-    return (0);
-
   return (read_memory_integer (get_frame_base (frame) + 12, 4));
 }
 \f