From 10f93086fb0aaf27687dee670f3b53a5726236d5 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sat, 31 May 2003 16:54:18 +0000 Subject: [PATCH] * x86-64-tdep.c (x86_64_push_dummy_call): Adjust for changed function signature. --- gdb/ChangeLog | 3 +++ gdb/x86-64-tdep.c | 9 +++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 94080f73d43..90110c8018e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2003-05-31 Mark Kettenis + * 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 diff --git a/gdb/x86-64-tdep.c b/gdb/x86-64-tdep.c index a33d33ae03d..f01be3dd62a 100644 --- a/gdb/x86-64-tdep.c +++ b/gdb/x86-64-tdep.c @@ -754,9 +754,10 @@ x86_64_store_return_value (struct type *type, struct regcache *regcache, 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... */ -- 2.30.2