OSDN Git Service

* vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
authorMark Kettenis <kettenis@gnu.org>
Sat, 15 May 2004 17:11:48 +0000 (17:11 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sat, 15 May 2004 17:11:48 +0000 (17:11 +0000)
instead of get_frame_base.

gdb/ChangeLog
gdb/vax-tdep.c

index 02f70a4..9f546b4 100644 (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.
 
index 8f3f661..48bb81b 100644 (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);