OSDN Git Service

* gcc.dg/torture/builtin-modf-1.c: Use -fno-finite-math-only on
[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 }