summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2002-09-24 18:50:34 +0000
committerKeith Seitz <keiths@redhat.com>2002-09-24 18:50:34 +0000
commit0538578bc66ae6279a06a30c6b2a2c285d9ddf7d (patch)
tree01174252bb5adf9281da0f0e18a77a8cb81e9482
parent75ab021e34799843c7f941e2d3d58225ac042a0b (diff)
downloadgdb-0538578bc66ae6279a06a30c6b2a2c285d9ddf7d.tar.gz
* varobj.c (c_type_of_child): Use get_target_type instead
of TYPE_TARGET_TYPE.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/varobj.c16
2 files changed, 16 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8180ac7b085..46a0bb17284 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-24 Keith Seitz <keiths@redhat.com>
+
+ * varobj.c (c_type_of_child): Use get_target_type instead
+ of TYPE_TARGET_TYPE.
+
2002-09-22 Fernando Nasser <fnasser@redhat.com>
* source.c (get_current_or_default_source_symtab_and_line): Remove
diff --git a/gdb/varobj.c b/gdb/varobj.c
index 4ae046aad4e..16ba528afe6 100644
--- a/gdb/varobj.c
+++ b/gdb/varobj.c
@@ -1345,7 +1345,10 @@ make_cleanup_free_variable (struct varobj *var)
/* This returns the type of the variable. This skips past typedefs
and returns the real type of the variable. It also dereferences
- pointers and references. */
+ pointers and references.
+
+ NOTE: TYPE_TARGET_TYPE should NOT be used anywhere in this file
+ except within get_target_type and get_type. */
static struct type *
get_type (struct varobj *var)
{
@@ -1374,7 +1377,10 @@ get_type_deref (struct varobj *var)
}
/* This returns the target type (or NULL) of TYPE, also skipping
- past typedefs, just like get_type (). */
+ past typedefs, just like get_type ().
+
+ NOTE: TYPE_TARGET_TYPE should NOT be used anywhere in this file
+ except within get_target_type and get_type. */
static struct type *
get_target_type (struct type *type)
{
@@ -1959,7 +1965,7 @@ c_type_of_child (struct varobj *parent, int index)
switch (TYPE_CODE (parent->type))
{
case TYPE_CODE_ARRAY:
- type = TYPE_TARGET_TYPE (parent->type);
+ type = get_target_type (parent->type);
break;
case TYPE_CODE_STRUCT:
@@ -1968,7 +1974,7 @@ c_type_of_child (struct varobj *parent, int index)
break;
case TYPE_CODE_PTR:
- switch (TYPE_CODE (TYPE_TARGET_TYPE (parent->type)))
+ switch (TYPE_CODE (get_target_type (parent->type)))
{
case TYPE_CODE_STRUCT:
case TYPE_CODE_UNION:
@@ -1976,7 +1982,7 @@ c_type_of_child (struct varobj *parent, int index)
break;
default:
- type = TYPE_TARGET_TYPE (parent->type);
+ type = get_target_type (parent->type);
break;
}
break;