Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-11.c
blobbc5f50140ff52f0d8db92b969603d6e19b5030ab
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" } */
6 struct A
8 long long a;
9 unsigned char b;
12 struct D
14 unsigned char y;
15 struct A x;
16 unsigned char z;
19 struct E
21 long long d;
22 unsigned char e;
25 struct y
27 struct A b2;
28 struct D b3;
29 struct E b4;
32 int f[sizeof(struct y)!=56?-1:1];