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