blob: d256d58e34bea40c548853d2dacb34f315fa32e8 [file] [log] [blame]
/* The following code used to ICE in fold_convert. */
float ceilf(float);
int foo(float x)
{
return (double)ceilf(x);
}