(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
powerpc/
darwin-abi-9.c
       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 l
      12  {
      13    int i;
      14    double d;
      15  };
      16  struct k
      17  {
      18    int tt;
      19    struct l d;
      20    struct b h;
      21    int t;
      22  };
      23  
      24  int f[sizeof(struct k)!=36?-1:1];