diff options
Diffstat (limited to 'gdb/amd64-tdep.c')
-rw-r--r-- | gdb/amd64-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/amd64-tdep.c b/gdb/amd64-tdep.c index 4b4bb5f..03a54ac 100644 --- a/gdb/amd64-tdep.c +++ b/gdb/amd64-tdep.c @@ -548,7 +548,7 @@ amd64_push_arguments (struct regcache *regcache, int nargs, for (i = 0; i < nargs; i++) { - struct type *type = VALUE_TYPE (args[i]); + struct type *type = value_type (args[i]); int len = TYPE_LENGTH (type); enum amd64_reg_class class[2]; int needed_integer_regs = 0; @@ -629,7 +629,7 @@ amd64_push_arguments (struct regcache *regcache, int nargs, /* Write out the arguments to the stack. */ for (i = 0; i < num_stack_args; i++) { - struct type *type = VALUE_TYPE (stack_args[i]); + struct type *type = value_type (stack_args[i]); char *valbuf = VALUE_CONTENTS (stack_args[i]); int len = TYPE_LENGTH (type); |