PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 961122-2.c
blob81e404ec4f127bf1c9f584224edd5f0505b49f8a
1 int
2 f (int a)
4 return ((a >= 0 && a <= 10) && ! (a >= 0));
7 main ()
9 if (f (0))
10 abort ();
11 exit (0);