2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20021119-1.c
blobc4ef460d45af82102dd222cdf33fc5c3b2014173
1 /* PR 8639. */
3 extern void abort(void);
5 int foo (int i)
7 int r;
8 r = (80 - 4 * i) / 20;
9 return r;
12 int main ()
14 if (foo (1) != 3)
15 abort ();
16 return 0;