Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / execute / 20021118-3.c
blob8ec01caa5dda2ee21ab47e62c5aa1fddbad40209
1 extern void abort (void);
2 extern void exit (int);
4 int
5 foo (int x)
7 if (x == -2 || -x - 100 >= 0)
8 abort ();
9 return 0;
12 int
13 main ()
15 foo (-3);
16 foo (-99);
17 exit (0);