diff options
author | Richard Henderson <rth@redhat.com> | 2003-06-04 16:44:29 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2003-06-04 16:44:29 +0000 |
commit | b21fd293ac00e7804f1d576440e5bd2e38f1a2a3 (patch) | |
tree | 52e1232acc83fd011fe8781b4990141c66db43b4 /gdb/alpha-mdebug-tdep.c | |
parent | 087779b16ba2e92880e361f1a123371de9e517f4 (diff) | |
download | gdb-b21fd293ac00e7804f1d576440e5bd2e38f1a2a3.zip gdb-b21fd293ac00e7804f1d576440e5bd2e38f1a2a3.tar.gz gdb-b21fd293ac00e7804f1d576440e5bd2e38f1a2a3.tar.bz2 |
* alpha-tdep.c (alpha_next_pc): Use alpha_read_insn.
(alpha_sigtramp_frame_this_id): Use get_frame_memory.
(alpha_sigtramp_frame_prev_register): Likewise.
(alpha_heuristic_frame_prev_register): Likewise.
* alpha-mdebug-tdep.c (alpha_mdebug_frame_prev_register): Likewise.
Diffstat (limited to 'gdb/alpha-mdebug-tdep.c')
-rw-r--r-- | gdb/alpha-mdebug-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/alpha-mdebug-tdep.c b/gdb/alpha-mdebug-tdep.c index 520656b..d481986 100644 --- a/gdb/alpha-mdebug-tdep.c +++ b/gdb/alpha-mdebug-tdep.c @@ -275,7 +275,7 @@ alpha_mdebug_frame_prev_register (struct frame_info *next_frame, *addrp = info->saved_regs[regnum]; *realnump = -1; if (bufferp != NULL) - read_memory (*addrp, bufferp, ALPHA_REGISTER_SIZE); + get_frame_memory (next_frame, *addrp, bufferp, ALPHA_REGISTER_SIZE); return; } |