diff options
author | Tom Tromey <tromey@redhat.com> | 2012-05-21 19:47:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-05-21 19:47:54 +0000 |
commit | b1af9e975066c48b043c5234199effd47115b4d4 (patch) | |
tree | 3a6e58a8b29679f4e34eecc734405b6f5420cde1 /gdb/ada-lang.c | |
parent | 248537e34b516ddcd9489f76441d81139ca7e2f7 (diff) | |
download | gdb-b1af9e975066c48b043c5234199effd47115b4d4.zip gdb-b1af9e975066c48b043c5234199effd47115b4d4.tar.gz gdb-b1af9e975066c48b043c5234199effd47115b4d4.tar.bz2 |
PR c++/7173:
* gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
types.
* value.h (value_cast_pointers): Update.
* valops.c (value_cast_pointers): Add 'subclass_check' argument.
(value_cast): Update.
(update_search_result): New function.
(do_search_struct_field): New, from search_struct_field. Check
for ambiguous results.
(search_struct_field): Rewrite.
* infcall.c (value_arg_coerce): Update.
* eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
value_cast_pointers.
* ada-lang.c (ada_convert_actual): Update.
testsuite
* gdb.cp/inherit.exp (test_print_mi_members): Expect errors.
Remove kfails.
(test_print_mi_member_types): Likewise.
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 72d4768..1fac316 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -4139,7 +4139,7 @@ ada_convert_actual (struct value *actual, struct type *formal_type0) } else return actual; - return value_cast_pointers (formal_type, result); + return value_cast_pointers (formal_type, result, 0); } else if (TYPE_CODE (actual_type) == TYPE_CODE_PTR) return ada_value_ind (actual); |