forked from Imagelibrary/binutils-gdb
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New functions. * value.h (VALUE_CONTENTS): Delete macro. (value_contents, value_contents_writeable): Declare. * xstormy16-tdep.c, value.c, valops.c, valarith.c: Update. * stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update. * sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update. * rs6000-tdep.c, p-valprint.c, printcmd.c: Update. * ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update. * m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update. * jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update. * hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update. * c-valprint.c, cris-tdep.c, cp-valprint.c: Update. * cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update. * arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update. * ada-valprint.c, ada-lang.c: Update.
This commit is contained in:
@@ -358,7 +358,7 @@ cp_print_value_fields (struct type *type, struct type *real_type,
|
||||
(TYPE_FIELD_TYPE (type, i),
|
||||
unpack_field_as_long (type, valaddr + offset, i));
|
||||
|
||||
val_print (TYPE_FIELD_TYPE (type, i), VALUE_CONTENTS (v),
|
||||
val_print (TYPE_FIELD_TYPE (type, i), value_contents (v),
|
||||
0, 0, stream, format, 0, recurse + 1, pretty);
|
||||
}
|
||||
}
|
||||
@@ -423,7 +423,7 @@ cp_print_value_fields (struct type *type, struct type *real_type,
|
||||
v = value_from_pointer (lookup_pointer_type (builtin_type_unsigned_long),
|
||||
*(unsigned long *) (valaddr + offset));
|
||||
|
||||
val_print (value_type (v), VALUE_CONTENTS (v), 0, 0,
|
||||
val_print (value_type (v), value_contents (v), 0, 0,
|
||||
stream, format, 0, recurse + 1, pretty);
|
||||
fields_seen = 1;
|
||||
|
||||
@@ -789,7 +789,7 @@ cp_print_hpacc_virtual_table_entries (struct type *type, int *vfuncs,
|
||||
vf->type = value_type (v); /* make it a pointer */
|
||||
|
||||
/* print out the entry */
|
||||
val_print (value_type (vf), VALUE_CONTENTS (vf), 0, 0,
|
||||
val_print (value_type (vf), value_contents (vf), 0, 0,
|
||||
stream, format, 0, recurse + 1, pretty);
|
||||
field_physname
|
||||
= TYPE_FN_FIELD_PHYSNAME (TYPE_FN_FIELDLIST1 (type, fn), oi);
|
||||
|
||||
Reference in New Issue
Block a user