aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2010-02-02 16:45:17 +0000
committerTom Tromey <tromey@redhat.com>2010-02-02 16:45:17 +0000
commitedf3d5f3f8c5adff55934e57da9cd8c874dc2a55 (patch)
treeb4c0a67139f68773c88d955a0a8267a8c6759bba /gdb/python
parent4339cae0bb39a38117d51fc52066e659dccaee29 (diff)
downloadfsf-binutils-gdb-edf3d5f3f8c5adff55934e57da9cd8c874dc2a55.zip
fsf-binutils-gdb-edf3d5f3f8c5adff55934e57da9cd8c874dc2a55.tar.gz
fsf-binutils-gdb-edf3d5f3f8c5adff55934e57da9cd8c874dc2a55.tar.bz2
gdb
PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890: * valops.c (search_struct_field): Compute nbases after calling CHECK_TYPEDEF. (check_field): Call CHECK_TYPEDEF. * cp-valprint.c (cp_print_value): Pass correct address to baseclass_offset. Fix check for virtual base past the end of the object. Don't offset address passed to cp_print_value_fields or apply_val_pretty_printer. (cp_print_value_fields): Fix call to val_print. (cp_print_value_fields_rtti): New function. * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti. * p-valprint.c (pascal_object_print_value_fields): Fix call to val_print. * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded offset to address. * language.h (struct language_defn) <la_val_print>: Document. * c-lang.h (cp_print_value_fields_rtti): Declare. gdb/testsuite PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890: * gdb.cp/virtbase.cc: New file. * gdb.cp/virtbase.exp: New file. * gdb.cp/userdef.exp: Allow 'struct' or 'class'.
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/py-prettyprint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/python/py-prettyprint.c b/gdb/python/py-prettyprint.c
index 193f97c..454aa5a 100644
--- a/gdb/python/py-prettyprint.c
+++ b/gdb/python/py-prettyprint.c
@@ -538,7 +538,8 @@ apply_val_pretty_printer (struct type *type, const gdb_byte *valaddr,
/* Instantiate the printer. */
if (valaddr)
valaddr += embedded_offset;
- value = value_from_contents_and_address (type, valaddr, address);
+ value = value_from_contents_and_address (type, valaddr,
+ address + embedded_offset);
val_obj = value_to_value_object (value);
if (! val_obj)