]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr27314.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr27314.c
CommitLineData
39b1ec97
UB
1/* { dg-do compile } */
2/* { dg-options "-O1 -ffast-math" } */
3
4extern double floor (double);
5
6inline int bar (double x)
7{
8 return (int) floor (x);
9}
10
11int foo (int i)
12{
13 return bar (i);
14}