Merge to HEAD at tree-cleanup-merge-20041024 .
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 961203-1.c
blob98908584333d6153862e3792ecec228058bd5995
1 /* The structure is too large for the xstormy16 - won't fit in 16
2 bits. */
3 /* { dg-do assemble } */
5 #if __INT_MAX__ >= 2147483647L
6 struct s {
7 char a[0x32100000];
8 int x:30, y:30;
9 };
11 int
12 main ()
14 struct s* p;
16 p = (struct s*) 0;
17 if (p->x == p->y)
18 exit (1);
20 #else
21 int g;
22 #endif