OSDN Git Service

2010-01-26 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr27314.c
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -ffast-math" } */
3
4 extern double floor (double);
5
6 inline int bar (double x)
7 {
8   return (int) floor (x);
9 }
10
11 int foo (int i)
12 {
13   return bar (i);
14 }