2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960218-1.c
blob7301a17b00de4bf1e52b2caee38ee5f9f9a42687
1 int glob;
3 g (x)
5 glob = x;
6 return 0;
9 f (x)
11 int a = ~x;
12 while (a)
13 a = g (a);
16 main ()
18 f (3);
19 if (glob != -4)
20 abort ();
21 exit (0);