2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 990117-1.c
blob9589ae746f8f9c3a5309905c6f087e8933c87ff4
1 int
2 foo (int x, int y, int i, int j)
4 double tmp1 = ((double) x / y);
5 double tmp2 = ((double) i / j);
7 return tmp1 < tmp2;
10 main ()
12 if (foo (2, 24, 3, 4) == 0)
13 abort ();
14 return 0;