* x86-64-tdep.c (x86_64_push_dummy_call): Adjust for changed

function signature.
This commit is contained in:
Mark Kettenis 2003-05-31 16:54:18 +00:00
parent 1c3545aea9
commit 10f93086fb
2 changed files with 8 additions and 4 deletions

View 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

View File

@ -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... */