This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug debug/47939] New: Missing DW_TAG_typedef for qualified types


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47939

           Summary: Missing DW_TAG_typedef for qualified types
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Keywords: wrong-debug
          Severity: normal
          Priority: P3
         Component: debug
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: rguenth@gcc.gnu.org


typedef const struct _George { int dummy; } George_t;
George_t george;

lacks a DW_TAG_typedef for George_t.  Compare that to

typedef struct _George { int dummy; } George_t;
George_t george;

where a DW_TAG_typedef for George_t appears.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]