blob: d146c46edf326d3afd6524e23f5d95906f617a31 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* { dg-do compile { target powerpc*-*-darwin* } } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-Wno-long-long" } */
struct f
{
long long ll;
int i;
};
int f[sizeof(struct f)!=16?-1:1];
|