OSDN Git Service

PR target/34814
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-7.c
1 /* { dg-do compile { target powerpc*-*-darwin* } } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-Wno-long-long" } */
4
5 struct b
6 {
7   long long t;
8   int i;
9 };
10 struct h
11 {
12   int tt;
13   struct b d;
14   int t;
15 };
16
17 int f[sizeof(struct h)!=24?-1:1];