2017-08-28 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-11.c
blob5d01572a8bafd7835204196134a77a86a87590e7
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 D
13 unsigned char y;
14 struct A x;
15 unsigned char z;
18 struct E
20 long long d;
21 unsigned char e;
24 struct y
26 struct A b2;
27 struct D b3;
28 struct E b4;
31 int f[sizeof(struct y)!=56?-1:1];