Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-10.c
blob68540b8a162321892e37c761e756c5582037ec70
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 c
13 double d;
14 int i;
17 struct n
19 long long ll;
20 int tt;
21 struct c d;
22 struct b h;
23 int t;
25 int f[sizeof(struct n)!=48?-1:1];