aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20000314-1.c
blob: 09de09493891e44801f6a2e2169050770b87f1a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int main ()
{
  long winds = 0;

  while (winds != 0)
    {
      if (*(char *) winds)
	break;
    }

  if (winds == 0 || winds != 0 || *(char *) winds)
    exit (0);

  abort ();
}