diff options
Diffstat (limited to 'gdb/i386-tdep.c')
-rw-r--r-- | gdb/i386-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c index 671ad50..1033eaf 100644 --- a/gdb/i386-tdep.c +++ b/gdb/i386-tdep.c @@ -1233,7 +1233,7 @@ i386_push_dummy_call (struct gdbarch *gdbarch, struct value *function, This makes sure the stack says word-aligned. */ sp -= (len + 3) & ~3; - write_memory (sp, VALUE_CONTENTS_ALL (args[i]), len); + write_memory (sp, value_contents_all (args[i]), len); } /* Push value address. */ |