2 /* { dg-options "-ffast-math" } */
4 extern void link_error(void);
6 void test(double x
, int n
)
8 if (__builtin_powi(x
,-1.0) != 1.0/x
)
10 if (__builtin_powi(x
,0.0) != 1.0)
12 if (__builtin_powi(x
,1.0) != x
)
14 if (__builtin_powi(1.0,n
) != 1.0)