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};
10struct h
11{
12  int tt;
13  struct b d;
14  int t;
15};
16
17int f[sizeof(struct h)!=24?-1:1];
18