aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/961203-1.c
blob: 0f066ace61776b4a78f69c1659f9e804a0f4a766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}