aboutsummaryrefslogtreecommitdiff
path: root/gdb/frv-tdep.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-04-22 17:02:31 +0000
committerAndrew Cagney <cagney@redhat.com>2004-04-22 17:02:31 +0000
commit6f14cc33f07589f5b04fbc87d452a32efc864002 (patch)
tree2b5bb9341ee33eef22c316b4d3bc8e98381679b5 /gdb/frv-tdep.c
parent01e91a6c57f52296c33da7eae95370aee3fd026b (diff)
downloadfsf-binutils-gdb-6f14cc33f07589f5b04fbc87d452a32efc864002.zip
fsf-binutils-gdb-6f14cc33f07589f5b04fbc87d452a32efc864002.tar.gz
fsf-binutils-gdb-6f14cc33f07589f5b04fbc87d452a32efc864002.tar.bz2
2004-04-22 Andrew Cagney <cagney@redhat.com>
* arm-tdep.c (arm_prologue_this_id): Delete redundant cycle test. * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto. * m32r-tdep.c (m32r_frame_this_id): Ditto. * frv-tdep.c (frv_frame_this_id): Ditto. * avr-tdep.c (avr_frame_this_id): Ditto.
Diffstat (limited to 'gdb/frv-tdep.c')
-rw-r--r--gdb/frv-tdep.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/frv-tdep.c b/gdb/frv-tdep.c
index 85d062c..f9f27dc 100644
--- a/gdb/frv-tdep.c
+++ b/gdb/frv-tdep.c
@@ -1370,16 +1370,6 @@ frv_frame_this_id (struct frame_info *next_frame,
return;
id = frame_id_build (base, func);
-
- /* Check that we're not going round in circles with the same frame
- ID (but avoid applying the test to sentinel frames which do go
- round in circles). Can't use frame_id_eq() as that doesn't yet
- compare the frame's PC value. */
- if (frame_relative_level (next_frame) >= 0
- && get_frame_type (next_frame) != DUMMY_FRAME
- && frame_id_eq (get_frame_id (next_frame), id))
- return;
-
(*this_id) = id;
}