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