1 /* { dg-options "-ffast-math" } */
2 
3 float farg;
4 unsigned val;
5 
6 void __attribute__((optimize("O")))
test()7 test()
8 {
9   val = __builtin_ceilf(farg);
10 }
11