1/* { dg-do compile { target powerpc*-*-darwin* } } */
2/* { dg-require-effective-target ilp32 } */
3/* { dg-options "-Wno-long-long" } */
4
5struct A
6{
7  long long a;
8  unsigned char b;
9};
10
11struct D
12{
13  unsigned char y;
14  struct A x;
15  unsigned char z;
16};
17
18struct E
19{
20  long long d;
21  unsigned char e;
22};
23
24struct y
25{
26  struct A b2;
27  struct D b3;
28  struct E b4;
29};
30
31int f[sizeof(struct y)!=56?-1:1];
32