diff options
author | Yao Qi <yao.qi@linaro.org> | 2016-11-11 08:38:31 +0000 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2016-11-11 08:38:31 +0000 |
commit | 668e167446b2777869f413841ec05aed59473d9f (patch) | |
tree | cbccde5d014f42cfa1f393b6134f6c268cf1c0fa /gdb/cp-valprint.c | |
parent | 65408fa680538f997cdd4b6fb9d74f043a060801 (diff) | |
download | gdb-668e167446b2777869f413841ec05aed59473d9f.zip gdb-668e167446b2777869f413841ec05aed59473d9f.tar.gz gdb-668e167446b2777869f413841ec05aed59473d9f.tar.bz2 |
Remove apply_val_pretty_printer parameter valaddr
This patch removes the parameter valaddr of
extension_language_ops::apply_val_pretty_printer and remove const from
"struct value *val". valaddr can be got in each extension language's
implementation of apply_val_pretty_printer.
gdb:
2016-11-11 Yao Qi <yao.qi@linaro.org>
* cp-valprint.c (cp_print_value): Remove local base_valaddr.
* extension-priv.h (struct extension_language_ops)
<apply_val_pretty_printer>: Remove the second parameter.
Remove const from "struct value *". Callers updated.
* extension.c (apply_ext_lang_val_pretty_printer): Update
comments. Remove parameter valaddr. Remove const from
"struct value *".
* extension.h (apply_ext_lang_val_pretty_printer): Update
declaration.
* guile/guile-internal.h (gdbscm_apply_val_pretty_printer):
Update declaration.
* guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
Remove parameter valaddr. Remove const from "struct value *".
* python/py-prettyprint.c (gdbpy_apply_val_pretty_printer):
Likewise.
* python/python-internal.h (gdbpy_apply_val_pretty_printer):
Update declaration.
Diffstat (limited to 'gdb/cp-valprint.c')
-rw-r--r-- | gdb/cp-valprint.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/cp-valprint.c b/gdb/cp-valprint.c index 57d5d02..9432c83 100644 --- a/gdb/cp-valprint.c +++ b/gdb/cp-valprint.c @@ -490,7 +490,6 @@ cp_print_value (struct type *type, struct type *real_type, int skip = 0; struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i)); const char *basename = TYPE_NAME (baseclass); - const gdb_byte *base_valaddr = NULL; struct value *base_val = NULL; if (BASETYPE_VIA_VIRTUAL (type, i)) @@ -551,18 +550,15 @@ cp_print_value (struct type *type, struct type *real_type, thisoffset = 0; boffset = 0; thistype = baseclass; - base_valaddr = value_contents_for_printing_const (base_val); do_cleanups (back_to); } else { - base_valaddr = valaddr; base_val = val; } } else { - base_valaddr = valaddr; base_val = val; } } @@ -591,7 +587,7 @@ cp_print_value (struct type *type, struct type *real_type, baseclass if possible. */ if (!options->raw) result - = apply_ext_lang_val_pretty_printer (baseclass, base_valaddr, + = apply_ext_lang_val_pretty_printer (baseclass, thisoffset + boffset, value_address (base_val), stream, recurse, |