8sa1-gcc/gcc/testsuite/gcc.c-torture/compile/961203-1.c
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

15 lines
142 B
C

struct s {
char a[0x32100000];
int x:30, y:30;
};
int
main ()
{
struct s* p;
p = (struct s*) 0;
if (p->x == p->y)
exit (1);
}