aboutsummaryrefslogtreecommitdiff
path: root/gdb/ax-gdb.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2000-10-30 21:15:56 +0000
committerMichael Snyder <msnyder@vmware.com>2000-10-30 21:15:56 +0000
commite8860ec2cfe96704af71f6572288562ea46d944b (patch)
treea9c27d67c8489e8874209b27edf531065b4b1161 /gdb/ax-gdb.c
parentf9e0997d4ccf2ec87236d9dfebbfb36fdc4e4669 (diff)
downloadgdb-e8860ec2cfe96704af71f6572288562ea46d944b.zip
gdb-e8860ec2cfe96704af71f6572288562ea46d944b.tar.gz
gdb-e8860ec2cfe96704af71f6572288562ea46d944b.tar.bz2
2000-10-19 Josef Ezra <jezra@emc.com>
* ax-gdb.c (gen_struct_ref): while generating data code, cases of "collect p1->p2->data" where not covered if p2 is a 'typedefed' type. this simple fix should forward the type pointer to the real type.
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r--gdb/ax-gdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c
index 2e2d0f2..1635364 100644
--- a/gdb/ax-gdb.c
+++ b/gdb/ax-gdb.c
@@ -1342,7 +1342,7 @@ gen_struct_ref (struct agent_expr *ax, struct axs_value *value, char *field,
gen_usual_unary (ax, value);
gen_deref (ax, value);
}
- type = value->type;
+ type = check_typedef (value->type);
/* This must yield a structure or a union. */
if (TYPE_CODE (type) != TYPE_CODE_STRUCT