PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / builtins-21.c
blob60b127fe61bfee2e9d7f4b1c7951144789cf4553
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)
23 return fabs(x*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));
36 float test1f(float x)
38 return fabsf(x*x);
41 float test2f(float x)
43 return fabsf(sqrtf(x)+2.0f);
46 float test3f(float x)
48 return fabsf(3.0f*expf(x));
51 long double test1l(long double x)
53 return fabsl(x*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));