1 /* Copyright (C) 2003 Free Software Foundation.
3 Check that constant folding of built-in math functions doesn't
4 break anything and produces the expected results.
6 Written by Roger Sayle, 2nd April 2003. */
9 /* { dg-options "-O2 -ffast-math" } */
11 extern void link_error(void);
13 extern double exp(double);
14 extern double log(double);
15 extern double sqrt(double);
16 extern double pow(double,double);
17 extern double fabs(double);
21 if (sqrt(pow(x
,4.0)) != x
*x
)
24 if (pow(sqrt(x
),4.0) != x
*x
)
27 if (pow(pow(x
,4.0),0.25) != x
)
28 /* XFAIL. PR41098. */;
31 void test2(double x
, double y
, double z
)
33 if (sqrt(pow(x
,y
)) != pow(fabs(x
),y
*0.5))
36 if (log(pow(x
,y
)) != y
*log(x
))
39 if (pow(exp(x
),y
) != exp(x
*y
))
42 if (pow(sqrt(x
),y
) != pow(x
,y
*0.5))
45 if (pow(pow(fabs(x
),y
),z
) != pow(fabs(x
),y
*z
))
52 test2 (2.0, 3.0, 4.0);