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