diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-11-04 18:55:51 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-11-04 18:55:51 +0000 |
commit | 34a1a3bf4843277ba221eeaaa6ea21671216696d (patch) | |
tree | 4a55d3e4879fe0f92657fa1eae30d25b521fa88e /gdb/rs6000-tdep.c | |
parent | aac9c614b2d673d28189780a3ffa78694f4b34a1 (diff) | |
download | gdb-34a1a3bf4843277ba221eeaaa6ea21671216696d.zip gdb-34a1a3bf4843277ba221eeaaa6ea21671216696d.tar.gz gdb-34a1a3bf4843277ba221eeaaa6ea21671216696d.tar.bz2 |
* rs6000-tdep.c (pop_frame): Correct a variable name.
Diffstat (limited to 'gdb/rs6000-tdep.c')
-rw-r--r-- | gdb/rs6000-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/rs6000-tdep.c b/gdb/rs6000-tdep.c index 76bbcf6..46cf8f7 100644 --- a/gdb/rs6000-tdep.c +++ b/gdb/rs6000-tdep.c @@ -473,7 +473,7 @@ pop_frame () still in the link register, otherwise walk the frames and retrieve the saved %pc value in the previous frame. */ - addr = get_pc_function_start (fr->pc) + FUNCTION_START_OFFSET; + addr = get_pc_function_start (frame->pc) + FUNCTION_START_OFFSET; function_frame_info (addr, &fdata); if (fdata.frameless) |