PR middle-end/30262
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 950706-1.c
blob2db1915411c18914646831e394da0e3a2f4a68ba
1 int
2 f (int n)
4 return (n > 0) - (n < 0);
7 main ()
9 if (f (-1) != -1)
10 abort ();
11 if (f (1) != 1)
12 abort ();
13 if (f (0) != 0)
14 abort ();
15 exit (0);