summaryrefslogtreecommitdiff
path: root/gdb/m88k-tdep.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-11-13 02:15:33 +0000
committerAndrew Cagney <cagney@redhat.com>2004-11-13 02:15:33 +0000
commit3ac1b362c4c6ed16360ea05a3445993e21ff4ff9 (patch)
tree3f11c6bd762d3c34861af8e1bb10c37aa07b98ca /gdb/m88k-tdep.c
parentc6e27b4a6e9ecf37628abe35922fe50a6aec27f3 (diff)
downloadgdb-3ac1b362c4c6ed16360ea05a3445993e21ff4ff9.tar.gz
2004-11-12 Andrew Cagney <cagney@gnu.org>
* 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.
Diffstat (limited to 'gdb/m88k-tdep.c')
-rw-r--r--gdb/m88k-tdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/m88k-tdep.c b/gdb/m88k-tdep.c
index 70378080208..7f6fe33b5b2 100644
--- a/gdb/m88k-tdep.c
+++ b/gdb/m88k-tdep.c
@@ -266,13 +266,13 @@ m88k_store_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);
if (m88k_integral_or_pointer_p (type) && len < 4)
{
args[i] = value_cast (builtin_type_int32, args[i]);
- type = VALUE_TYPE (args[i]);
+ type = value_type (args[i]);
len = TYPE_LENGTH (type);
}
@@ -307,7 +307,7 @@ m88k_store_arguments (struct regcache *regcache, int nargs,
for (i = 0; i < nargs; i++)
{
char *valbuf = VALUE_CONTENTS (args[i]);
- struct type *type = VALUE_TYPE (args[i]);
+ struct type *type = value_type (args[i]);
int len = TYPE_LENGTH (type);
int stack_word = num_stack_words;