1 /* Copyright (C) 2003 Free Software Foundation.
3 Verify that built-in math function constant folding doesn't
4 cause any problems for the compiler.
6 Written by Roger Sayle, 7th June 2003. */
8 /* { dg-do compile } */
9 /* { dg-options "-O2 -ffast-math" } */
11 extern double fabs (double);
12 extern float fabsf (float);
13 extern long double fabsl (long double);
14 extern double sqrt (double);
15 extern float sqrtf (float);
16 extern long double sqrtl (long double);
17 extern double exp (double);
18 extern float expf (float);
19 extern long double expl (long double);
21 double test1(double x
)
26 double test2(double x
)
28 return fabs(sqrt(x
)+2.0);
31 double test3(double x
)
33 return fabs(3.0*exp(x
));
43 return fabsf(sqrtf(x
)+2.0f
);
48 return fabsf(3.0f
*expf(x
));
51 long double test1l(long double x
)
56 long double test2l(long double x
)
58 return fabsl(sqrtl(x
)+2.0l);
61 long double test3l(long double x
)
63 return fabsl(3.0l*expl(x
));