2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr27314.c
blobd99be5eb805f42d64da1b53e3a67e95304a77b34
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -ffast-math" } */
4 extern double floor (double);
6 inline int bar (double x)
8 return (int) floor (x);
11 int foo (int i)
13 return bar (i);