diff options
author | Richard Henderson <rth@redhat.com> | 2003-05-30 18:41:39 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2003-05-30 18:41:39 +0000 |
commit | 85b32d22900470d4294bef7d06f51118b7bbefb4 (patch) | |
tree | 60ebb3f418eada060041b25f1a1ebefb2aa7bf6e /gdb/alpha-tdep.c | |
parent | 10059fdf95b7cce091273a31f9ebd0ad5e76b6ff (diff) | |
download | gdb-85b32d22900470d4294bef7d06f51118b7bbefb4.zip gdb-85b32d22900470d4294bef7d06f51118b7bbefb4.tar.gz gdb-85b32d22900470d4294bef7d06f51118b7bbefb4.tar.bz2 |
* alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Fix loop increment.
Diffstat (limited to 'gdb/alpha-tdep.c')
-rw-r--r-- | gdb/alpha-tdep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/alpha-tdep.c b/gdb/alpha-tdep.c index 6607527..2bd3b26 100644 --- a/gdb/alpha-tdep.c +++ b/gdb/alpha-tdep.c @@ -856,6 +856,8 @@ alpha_heuristic_frame_unwind_cache (struct frame_info *next_frame, return_reg = (word >> 16) & 0x1f; break; } + + cur_pc += 4; } } } |