diff options
author | Anton Gorenkov <xgsa@sourceware.org> | 2012-02-21 13:48:59 +0000 |
---|---|---|
committer | Anton Gorenkov <xgsa@sourceware.org> | 2012-02-21 13:48:59 +0000 |
commit | dfcee124897d3395925bdfbfded468c9c81394a0 (patch) | |
tree | ff8b1acd9e1b0763ff5edff8183a73fbc997643e /gdb/eval.c | |
parent | 16a87420985f256b5cde070586ebcdfda2225b01 (diff) | |
download | gdb-dfcee124897d3395925bdfbfded468c9c81394a0.zip gdb-dfcee124897d3395925bdfbfded468c9c81394a0.tar.gz gdb-dfcee124897d3395925bdfbfded468c9c81394a0.tar.bz2 |
gdb/
* c-valprint.c (c_value_print): Use value_rtti_indirect_type
instead of value_rtti_target_type.
* eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
instead of value_rtti_target_type.
* typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
value_rtti_target_type.
* valops.c (value_ind): Extract function readjust_indirect_value_type.
(value_rtti_target_type): Rename to ...
(value_rtti_indirect_type): ... here and make it indirect. Update
function comment.
* value.c (readjust_indirect_value_type): New function.
(coerce_ref): Support for enclosing type setting for references
with readjust_indirect_value_type.
* value.h (readjust_value_type): New declaration.
(value_rtti_target_type): Rename to ...
(value_rtti_indirect_type): ... here.
Diffstat (limited to 'gdb/eval.c')
-rw-r--r-- | gdb/eval.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -2001,16 +2001,10 @@ evaluate_subexp_standard (struct type *expect_type, if (opts.objectprint && TYPE_TARGET_TYPE(type) && (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_CLASS)) { - real_type = value_rtti_target_type (arg1, &full, &top, &using_enc); + real_type = value_rtti_indirect_type (arg1, &full, &top, + &using_enc); if (real_type) - { - if (TYPE_CODE (type) == TYPE_CODE_PTR) - real_type = lookup_pointer_type (real_type); - else - real_type = lookup_reference_type (real_type); - arg1 = value_cast (real_type, arg1); - } } } |