2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 941110-1.c
blobb78256d3c3f4018f0d4e5ff84650815767cd3d86
1 f (const int x)
3 int y = 0;
4 y = x ? y : -y;
6 const int *p = &x;
8 return y;
11 main ()
13 if (f (0))
14 abort ();
15 exit (0);