Commit 02294ed2 by Jason Merrill

decl.c (grokdeclarator): Don't override TYPE_NAME of an anonymous class with a typedef if...

        * decl.c (grokdeclarator): Don't override TYPE_NAME of an
        anonymous class with a typedef if there are attributes.

[[Split portion of a mixed commit.]]

From-SVN: r52955.2
parent ac905924
// PR debug/6436
// { dg-do compile }
typedef struct
{
unsigned int a0, a1;
} A __attribute__ ((aligned(8)));
typedef struct
{
A a;
} B;
struct C
{
B *bp;
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment