OSDN Git Service

* gcc.c-torture/execute/960321-1.x: Remove.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 961122-2.c
1 int
2 f (int a)
3 {
4   return ((a >= 0 && a <= 10) && ! (a >= 0));
5 }
6
7 main ()
8 {
9   if (f (0))
10     abort ();
11   exit (0);
12 }