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