diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2022-07-30 22:43:54 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-09-21 10:59:49 -0400 |
commit | 27710edb4e588d0360620df424dd7ee7e8cfafee (patch) | |
tree | af4da9f4c7e032ab6653536f2a991cbe09cee759 /gdb/c-varobj.c | |
parent | 8a50fdcefc44c40d5c4b978f19c22ddfbeb29139 (diff) | |
download | gdb-27710edb4e588d0360620df424dd7ee7e8cfafee.zip gdb-27710edb4e588d0360620df424dd7ee7e8cfafee.tar.gz gdb-27710edb4e588d0360620df424dd7ee7e8cfafee.tar.bz2 |
gdb: remove TYPE_TARGET_TYPE
Remove the macro, replace all uses by calls to type::target_type.
Change-Id: Ie51d3e1e22f94130176d6abd723255282bb6d1ed
Diffstat (limited to 'gdb/c-varobj.c')
-rw-r--r-- | gdb/c-varobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/c-varobj.c b/gdb/c-varobj.c index 8fecbd5..957e7f3 100644 --- a/gdb/c-varobj.c +++ b/gdb/c-varobj.c @@ -403,7 +403,7 @@ c_describe_child (const struct varobj *parent, int index, check_typedef and here, we want to show the true declared type of the variable. */ if (ctype) - *ctype = TYPE_TARGET_TYPE (type); + *ctype = type->target_type (); if (cfull_expression) *cfull_expression = string_printf ("*(%s)", parent_expression.c_str ()); @@ -482,7 +482,7 @@ c_value_of_variable (const struct varobj *var, /* Strip top-level references. */ while (TYPE_IS_REFERENCE (type)) - type = check_typedef (TYPE_TARGET_TYPE (type)); + type = check_typedef (type->target_type ()); switch (type->code ()) { |