diff options
author | Per Bothner <per@bothner.com> | 1995-11-30 01:43:37 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1995-11-30 01:43:37 +0000 |
commit | 940d596798931962895918454d2ca6bd14b83b1b (patch) | |
tree | 0b1efd109bb8fe8f038446ea785b2dd91e35ebeb /gdb/h8500-tdep.c | |
parent | d1f4065e6499c42088b36a058b1de4035d051392 (diff) | |
download | gdb-940d596798931962895918454d2ca6bd14b83b1b.zip gdb-940d596798931962895918454d2ca6bd14b83b1b.tar.gz gdb-940d596798931962895918454d2ca6bd14b83b1b.tar.bz2 |
* alpha-tdep.c, c-exp.y, h8500-tdep.c, f-exp.y, f-valprint.c,
findvar.c, hppa-tdep.c, infcmd.c, language.c, printcmd.c,
rs6000-tdep.c, symmisc.c, symtab.c:
Add check_typedef/CHECK_TYPEDEF as needed.
Diffstat (limited to 'gdb/h8500-tdep.c')
-rw-r--r-- | gdb/h8500-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/h8500-tdep.c b/gdb/h8500-tdep.c index 0eb34ee..38a4859 100644 --- a/gdb/h8500-tdep.c +++ b/gdb/h8500-tdep.c @@ -572,14 +572,14 @@ h8500_set_trapped_internalvar (var, newval, bitpos, bitsize, offset) struct type *type; enum type_code newval_type_code; - type = VALUE_TYPE (newval); + type = check_typedef (VALUE_TYPE (newval)); newval_type_code = TYPE_CODE (type); if ((newval_type_code != TYPE_CODE_INT && newval_type_code != TYPE_CODE_PTR) || TYPE_LENGTH (type) != sizeof (new_regval)) error ("Illegal type (%s) for assignment to $%s\n", - TYPE_NAME (type), var->name); + TYPE_NAME (VALUE_TYPE (newval)), var->name); new_regval = *(long *) VALUE_CONTENTS_RAW (newval); |