OSDN Git Service

4d80187468e6311912c15ebb86355dc1cc8035e9
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-6.c
1 /* { dg-do compile { target powerpc*-*-darwin* } } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-xfail-if "" { powerpc*-*-darwin* } } */
4 /* { dg-options "-Wno-long-long" } */
5
6 struct a
7 {
8   int tt;
9   long long t;
10   int i;
11 };
12
13 struct g
14 {
15   int tt;
16   struct a d;
17   int t;
18 };
19
20 int f[sizeof(struct g)!=24?-1:1];