Modified Files:

gdbtypes.c ChangeLog

        * gdbtypes.c (lookup_struct_elt_type): Handle type ref or pointer
        to struct/union case. (fix pr3857)
This commit is contained in:
Kung Hsu 1993-11-12 19:21:13 +00:00
parent 9a13e99e20
commit 624456be75
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri Nov 12 11:18:02 1993 Kung Hsu (kung@cirdan.cygnus.com)
* gdbtypes.c (lookup_struct_elt_type): Handle type ref or pointer
to struct/union case.
Fri Nov 12 10:39:31 1993 Stu Grossman (grossman at cygnus.com)
* coff-solib.c (coff_solib_add): Cast result of alloca().

View File

@ -685,7 +685,7 @@ lookup_struct_elt_type (type, name, noerr)
{
int i;
if (TYPE_CODE (type) == TYPE_CODE_PTR ||
while (TYPE_CODE (type) == TYPE_CODE_PTR ||
TYPE_CODE (type) == TYPE_CODE_REF)
type = TYPE_TARGET_TYPE (type);