diff options
author | Daniel Jacobowitz <dan@debian.org> | 2007-10-17 13:36:45 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2007-10-17 13:36:45 +0000 |
commit | a24b87f105e3e7029aabcc6fddf87a03ee74b715 (patch) | |
tree | 963e03dc1e4061fce0cc291649db5b49380979d4 /gdb/alpha-mdebug-tdep.c | |
parent | 50e5bed3a5feb7a9f482475011efe8702da452f1 (diff) | |
download | gdb-a24b87f105e3e7029aabcc6fddf87a03ee74b715.tar.gz |
* frame.c (frame_unwind_unsigned_register): Delete.
(frame_sp_unwind): Use frame_unwind_register_unsigned instead.
* frame.h (frame_unwind_unsigned_register): Delete prototype.
* alpha-linux-tdep.c, alpha-mdebug-tdep.c, alpha-tdep.c,
avr-tdep.c, cris-tdep.c, frv-tdep.c, m68hc11-tdep.c, mn10300-tdep.c,
mt-tdep.c: Replace frame_unwind_unsigned_register with
frame_unwind_register_unsigned.
* gdbint.texinfo (Target Conditionals): Use
frame_unwind_register_unsigned in examples instead of
frame_unwind_unsigned_register.
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 9c82ad16eba..d2c3b9b1277 100644 --- a/gdb/alpha-mdebug-tdep.c +++ b/gdb/alpha-mdebug-tdep.c @@ -204,7 +204,7 @@ alpha_mdebug_frame_unwind_cache (struct frame_info *next_frame, info->saved_regs = frame_obstack_zalloc (SIZEOF_FRAME_SAVED_REGS); /* The VFP of the frame is at FRAME_REG+FRAME_OFFSET. */ - frame_unwind_unsigned_register (next_frame, PROC_FRAME_REG (proc_desc), &vfp); + vfp = frame_unwind_register_unsigned (next_frame, PROC_FRAME_REG (proc_desc)); vfp += PROC_FRAME_OFFSET (info->proc_desc); info->vfp = vfp; |