1189765Sgabor/* { dg-do compile { target powerpc*-*-darwin* } } */
2189765Sgabor/* { dg-require-effective-target ilp32 } */
3189765Sgabor/* { dg-options "-Wno-long-long" } */
4189765Sgabor
5189765Sgaborstruct b
6189765Sgabor{
7189765Sgabor  long long t;
8189765Sgabor  int i;
9189765Sgabor};
10189765Sgabor
11189765Sgaborstruct c
12189765Sgabor{
13189765Sgabor  double d;
14189765Sgabor  int i;
15189765Sgabor};
16189765Sgabor
17189765Sgaborstruct n
18189765Sgabor{
19189765Sgabor  long long ll;
20189765Sgabor  int tt;
21189765Sgabor  struct c d;
22189765Sgabor  struct b h;
23189765Sgabor  int t;
24189765Sgabor};
25189765Sgaborint f[sizeof(struct n)!=48?-1:1];
26189765Sgabor