From 4991999e3530290962590480d1de73c5483f8b2a Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Sat, 13 Nov 2004 02:15:33 +0000 Subject: 2004-11-12 Andrew Cagney * sparc-tdep.c: Replace VALUE_TYPE with value_type. * v850-tdep.c, sparc64-tdep.c, sh-tdep.c: Ditto. * sh64-tdep.c, s390-tdep.c, mcore-tdep.c: Ditto. * h8300-tdep.c, arm-linux-tdep.c, amd64-tdep.c: Ditto. * hppa-tdep.c, mips-tdep.c, m88k-tdep.c: Ditto. * m68hc11-tdep.c, m32r-tdep.c, ia64-tdep.c: Ditto. * frv-tdep.c, cris-tdep.c, avr-tdep.c, alpha-tdep.c: Ditto. --- gdb/s390-tdep.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/s390-tdep.c') diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c index 19dff19..71d9b37 100644 --- a/gdb/s390-tdep.c +++ b/gdb/s390-tdep.c @@ -2428,7 +2428,7 @@ s390_function_arg_integer (struct type *type) static LONGEST extend_simple_arg (struct value *arg) { - struct type *type = VALUE_TYPE (arg); + struct type *type = value_type (arg); /* Even structs get passed in the least significant bits of the register / memory word. It's not really right to extract them as @@ -2511,7 +2511,7 @@ s390_push_dummy_call (struct gdbarch *gdbarch, struct value *function, for (i = 0; i < nargs; i++) { struct value *arg = args[i]; - struct type *type = VALUE_TYPE (arg); + struct type *type = value_type (arg); unsigned length = TYPE_LENGTH (type); if (s390_function_arg_pass_by_reference (type)) @@ -2552,7 +2552,7 @@ s390_push_dummy_call (struct gdbarch *gdbarch, struct value *function, for (i = 0; i < nargs; i++) { struct value *arg = args[i]; - struct type *type = VALUE_TYPE (arg); + struct type *type = value_type (arg); unsigned length = TYPE_LENGTH (type); if (s390_function_arg_pass_by_reference (type)) -- cgit v1.1