1 /* { dg-do compile } */
2 /* { dg-options "-ffast-math" } */
3 
foo(void)4 double foo(void)
5 {
6   return __builtin_pow (0.0, -1.5);
7 }
8 
9