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/h8300-tdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/h8300-tdep.c') diff --git a/gdb/h8300-tdep.c b/gdb/h8300-tdep.c index 0d6c3bc..c501b89 100644 --- a/gdb/h8300-tdep.c +++ b/gdb/h8300-tdep.c @@ -644,7 +644,7 @@ h8300_push_dummy_call (struct gdbarch *gdbarch, struct value *function, /* Now make sure there's space on the stack for the arguments. We may over-allocate a little here, but that won't hurt anything. */ for (argument = 0; argument < nargs; argument++) - stack_alloc += align_up (TYPE_LENGTH (VALUE_TYPE (args[argument])), + stack_alloc += align_up (TYPE_LENGTH (value_type (args[argument])), wordsize); sp -= stack_alloc; @@ -658,7 +658,7 @@ h8300_push_dummy_call (struct gdbarch *gdbarch, struct value *function, for (argument = 0; argument < nargs; argument++) { - struct type *type = VALUE_TYPE (args[argument]); + struct type *type = value_type (args[argument]); int len = TYPE_LENGTH (type); char *contents = (char *) VALUE_CONTENTS (args[argument]); -- cgit v1.1