1 // PR debug/6436
2 // { dg-do compile }
3 
4 typedef struct
5 {
6   unsigned int a0, a1;
7 } A __attribute__ ((aligned(8)));
8 
9 typedef struct
10 {
11   A a;
12 } B;
13 
14 struct C
15 {
16   B *bp;
17 };
18