2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 961112-1.c
blob4b1c31222caf1b8421edf1ab4690c0de67cd3153
1 f (x)
3 if (x != 0 || x == 0)
4 return 0;
5 return 1;
8 main ()
10 if (f (3))
11 abort ();
12 exit (0);