summaryrefslogtreecommitdiff
path: root/gdb/m68hc11-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
commit1d6cda97341177cd4fa97f1bbf1f0a8e24993df5 (patch)
tree884225f912d7316ba5af679244a04bd835f5675e /gdb/m68hc11-tdep.c
parent9acc2adf8a1d3879860192f6b2b4544bbafd20e1 (diff)
downloadgdb-1d6cda97341177cd4fa97f1bbf1f0a8e24993df5.tar.gz
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/m68hc11-tdep.c')
-rw-r--r--gdb/m68hc11-tdep.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/m68hc11-tdep.c b/gdb/m68hc11-tdep.c
index efe050955eb..e7e1a1afa3e 100644
--- a/gdb/m68hc11-tdep.c
+++ b/gdb/m68hc11-tdep.c
@@ -899,16 +899,6 @@ m68hc11_frame_this_id (struct frame_info *next_frame,
return;
id = frame_id_build (base, func);
-#if 0
- /* 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;
-#endif
(*this_id) = id;
}