Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr27314.c
blob: d99be5eb805f42d64da1b53e3a67e95304a77b34 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O1 -ffast-math" } */
extern
double
floor
(
double
);
inline
int
bar
(
double
x
)
{
return
(
int
)
floor
(
x
);
}
int
foo
(
int
i
)
{
return
bar
(
i
);
}