blob: dfccd7af4309b4031cc26d29d334efa1a053dfde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-do assemble } */
float testlf (float x)
{
return __builtin_ceilf (x);
}
double testl (double x)
{
return __builtin_ceil (x);
}
long double testll (long double x)
{
return __builtin_ceill (x);
}
|