* vax-tdep.c (vax_frame_num_args): Use get_frame_base_address

instead of get_frame_base.
This commit is contained in:
Mark Kettenis 2004-05-15 17:11:48 +00:00
parent feae6502ea
commit a54f9a006c
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2004-05-15 Mark Kettenis <kettenis@gnu.org>
* vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
instead of get_frame_base.
* i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.
(fill_gregset): Use regcache_raw_collect.

View File

@ -429,7 +429,7 @@ vax_frame_num_args (struct frame_info *frame)
/* Assume that the argument pointer for the outermost frame is
hosed, as is the case on NetBSD/vax ELF. */
if (get_frame_base (frame) == 0)
if (get_frame_base_address (frame) == 0)
return 0;
args = get_frame_register_unsigned (frame, VAX_AP_REGNUM);