Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-5.c
blob4965c5bd8d7a327bdeac853f418e7ba13341970d
1 /* { dg-do compile { target powerpc*-*-darwin* } } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-Wno-long-long" } */
5 struct A
7 long long a;
8 unsigned char b;
9 };
11 struct B
13 struct A x;
14 unsigned char z;
17 struct C
19 long d;
20 unsigned char e;
23 struct z
25 struct A b2;
26 struct B b3;
27 struct C b4;
30 int f[sizeof(struct z)!=48?-1:1];