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