OSDN Git Service

* x86-64-tdep.c (x86_64_push_dummy_call): Adjust for changed
authorMark Kettenis <kettenis@gnu.org>
Sat, 31 May 2003 16:54:18 +0000 (16:54 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sat, 31 May 2003 16:54:18 +0000 (16:54 +0000)
function signature.

gdb/ChangeLog
gdb/x86-64-tdep.c

index 94080f7..90110c8 100644 (file)
@@ -1,5 +1,8 @@
 2003-05-31  Mark Kettenis  <kettenis@gnu.org>
 
+       * x86-64-tdep.c (x86_64_push_dummy_call): Adjust for changed
+       function signature.
+
        * i386-tdep.c (i386_sigtramp_frame_p): Only handle frames if we
        have a sigcontext_addr handler.
        * x86-64-tdep.c (x86_64_sigtramp_frame_p): Assert that we have a
index a33d33a..f01be3d 100644 (file)
@@ -754,9 +754,10 @@ x86_64_store_return_value (struct type *type, struct regcache *regcache,
 \f
 
 static CORE_ADDR
-x86_64_push_dummy_call (struct gdbarch *gdbarch, struct regcache *regcache,
-                       CORE_ADDR dummy_addr, int nargs, struct value **args,
-                       CORE_ADDR sp, int struct_return, CORE_ADDR struct_addr)
+x86_64_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
+                       struct regcache *regcache, CORE_ADDR bp_addr,
+                       int nargs, struct value **args, CORE_ADDR sp,
+                       int struct_return, CORE_ADDR struct_addr)
 {
   char buf[8];
 
@@ -772,7 +773,7 @@ x86_64_push_dummy_call (struct gdbarch *gdbarch, struct regcache *regcache,
 
   /* Store return address.  */
   sp -= 8;
-  store_unsigned_integer (buf, 8, dummy_addr);
+  store_unsigned_integer (buf, 8, bp_addr);
   write_memory (sp, buf, 8);
 
   /* Finally, update the stack pointer...  */