diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-08 04:15:39 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-08 04:15:39 +0000 |
commit | 5086187cf9ff8626f0ef2ee885be62dde9eae4d6 (patch) | |
tree | 941724cce081d5f6f255a25dffbe3ef318158873 /gdb/c-valprint.c | |
parent | 300475fe9d2e1ffb2ea4bb7f7d3fe9a11bbf8c43 (diff) | |
download | gdb-5086187cf9ff8626f0ef2ee885be62dde9eae4d6.zip gdb-5086187cf9ff8626f0ef2ee885be62dde9eae4d6.tar.gz gdb-5086187cf9ff8626f0ef2ee885be62dde9eae4d6.tar.bz2 |
2005-02-07 Andrew Cagney <cagney@gnu.org>
* cp-valprint.c, c-valprint.c, infcall.c: Use value_contents or
value_contents_writeable, include note that there are problems.
* breakpoint.c, infcall.c: Use VALUE_LVAL.
Diffstat (limited to 'gdb/c-valprint.c')
-rw-r--r-- | gdb/c-valprint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/c-valprint.c b/gdb/c-valprint.c index 948f5d8..e9372fb 100644 --- a/gdb/c-valprint.c +++ b/gdb/c-valprint.c @@ -551,7 +551,8 @@ c_value_print (struct value *val, struct ui_file *stream, int format, type = lookup_reference_type (real_type); } /* JYG: Need to adjust pointer value. */ - val->aligner.contents[0] -= top; + /* NOTE: cagney/2005-01-02: THIS IS BOGUS. */ + value_contents_writeable (val)[0] -= top; /* Note: When we look up RTTI entries, we don't get any information on const or volatile attributes */ |