1 /* { dg-do compile { target powerpc*-*-darwin* } } */
2 /* { dg-require-effective-target ilp32 } */
3
4 struct c
5 {
6 double d;
7 int i;
8 };
9
10 struct j
11 {
12 int tt;
13 struct c d;
14 int t;
15 };
16
17 int f[sizeof(struct j)!=24?-1:1];