2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / round.c
blob5233e65ea90efbc050c6120e797a248a250e4572
1 foo (a)
2 double a;
4 printf ("%d\n", (int) a);
7 main ()
9 foo (1.6);
10 foo (1.4);
11 foo (-1.4);
12 foo (-1.6);