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