From: rth Date: Fri, 30 May 2003 18:41:38 +0000 (+0000) Subject: * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Fix loop increment. X-Git-Tag: cr-0x99~1678 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=57cf74e505e8ed8bd87e510345067bac6a489579;p=pf3gnuchains%2Fpf3gnuchains4x.git * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Fix loop increment. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ef18af7602..e75a738329 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 66075279ee..2bd3b266ce 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; } } }