]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.target/powerpc/darwin-abi-10.c
In gcc/: PR 23067
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-10.c
CommitLineData
893ea232
AT
1/* { dg-do compile { target powerpc*-*-darwin* } } */
2/* { dg-require-effective-target ilp32 } */
893ea232
AT
3/* { dg-options "-Wno-long-long" } */
4
5struct b
6{
7 long long t;
8 int i;
9};
10
11struct c
12{
13 double d;
14 int i;
15};
16
17struct n
18{
19 long long ll;
20 int tt;
21 struct c d;
22 struct b h;
23 int t;
24};
25int f[sizeof(struct n)!=48?-1:1];