From: Richard Henderson Date: Fri, 30 May 2003 18:41:39 +0000 (+0000) Subject: * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Fix loop increment. X-Git-Tag: ezannoni_pie-20030916-branchpoint~1521 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85b32d22900470d4294bef7d06f51118b7bbefb4;p=external%2Fbinutils.git * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Fix loop increment. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ef18af7..e75a738 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2003-05-30 Richard Henderson + + * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Fix loop increment. + 2003-05-29 Jim Blandy Use gdbarch methods for solib stuff on PowerPC Linux. 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; } } }