diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-02 21:36:17 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-02 21:36:17 +0000 |
commit | 46615f07c3db91f7a0f138baec128749604dca43 (patch) | |
tree | 0c281bc164e338ce3b4bc9aedc5821ccab65a223 /gdb/c-valprint.c | |
parent | 1b9afc0454112ae9ac41f6e8ee45ca915f97adc8 (diff) | |
download | gdb-46615f07c3db91f7a0f138baec128749604dca43.zip gdb-46615f07c3db91f7a0f138baec128749604dca43.tar.gz gdb-46615f07c3db91f7a0f138baec128749604dca43.tar.bz2 |
2005-02-02 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_CONTENTS_ALL): Delete.
(value_contents_all): Declare.
* value.c (value_contents_all): New function.
* hpacc-abi.c, cp-valprint.c, valops.c, c-valprint.c: Update.
* m68k-tdep.c, i386-tdep.c, infcall.c, valops.c: Update.
Diffstat (limited to 'gdb/c-valprint.c')
-rw-r--r-- | gdb/c-valprint.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gdb/c-valprint.c b/gdb/c-valprint.c index 532dedc..6f10619 100644 --- a/gdb/c-valprint.c +++ b/gdb/c-valprint.c @@ -579,8 +579,9 @@ c_value_print (struct value *val, struct ui_file *stream, int format, TYPE_NAME (real_type), full ? "" : _(" [incomplete object]")); /* Print out object: enclosing type is same as real_type if full */ - return val_print (value_enclosing_type (val), VALUE_CONTENTS_ALL (val), 0, - VALUE_ADDRESS (val), stream, format, 1, 0, pretty); + return val_print (value_enclosing_type (val), + value_contents_all (val), 0, + VALUE_ADDRESS (val), stream, format, 1, 0, pretty); /* Note: When we look up RTTI entries, we don't get any information on const or volatile attributes */ } @@ -589,13 +590,14 @@ c_value_print (struct value *val, struct ui_file *stream, int format, /* No RTTI information, so let's do our best */ fprintf_filtered (stream, "(%s ?) ", TYPE_NAME (value_enclosing_type (val))); - return val_print (value_enclosing_type (val), VALUE_CONTENTS_ALL (val), 0, - VALUE_ADDRESS (val), stream, format, 1, 0, pretty); + return val_print (value_enclosing_type (val), + value_contents_all (val), 0, + VALUE_ADDRESS (val), stream, format, 1, 0, pretty); } /* Otherwise, we end up at the return outside this "if" */ } - return val_print (type, VALUE_CONTENTS_ALL (val), + return val_print (type, value_contents_all (val), VALUE_EMBEDDED_OFFSET (val), VALUE_ADDRESS (val) + value_offset (val), stream, format, 1, 0, pretty); |