Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-9.c
blobfa5bd017fec3072288f58f1cb2dbb8c4390bcc2d
1 /* { dg-do compile { target powerpc*-*-darwin* } } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-Wno-long-long" } */
5 struct b
7 long long t;
8 int i;
9 };
11 struct l
13 int i;
14 double d;
16 struct k
18 int tt;
19 struct l d;
20 struct b h;
21 int t;
24 int f[sizeof(struct k)!=36?-1:1];