diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-04-22 17:02:31 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-04-22 17:02:31 +0000 |
commit | 1d6cda97341177cd4fa97f1bbf1f0a8e24993df5 (patch) | |
tree | 884225f912d7316ba5af679244a04bd835f5675e /gdb/arm-tdep.c | |
parent | 9acc2adf8a1d3879860192f6b2b4544bbafd20e1 (diff) | |
download | gdb-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/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 3fa37c9a88e..1cd0b1c3427 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -993,15 +993,6 @@ arm_prologue_this_id (struct frame_info *next_frame, return; id = frame_id_build (cache->prev_sp, 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). */ - if (frame_relative_level (next_frame) >= 0 - && get_frame_type (next_frame) == NORMAL_FRAME - && frame_id_eq (get_frame_id (next_frame), id)) - return; - *this_id = id; } |