1 /* Copyright (C) 2004 Free Software Foundation.
3 Check that logb, logbf, logbl, ilogb, ilogbf and ilogbl
4 built-in functions compile.
6 Written by Uros Bizjak, 14th April 2004. */
8 /* { dg-do compile } */
9 /* { dg-options "-O2 -ffast-math" } */
11 extern double logb(double);
12 extern float logbf(float);
13 extern long double logbl(long double);
14 extern int ilogb(double);
15 extern int ilogbf(float);
16 extern int ilogbl(long double);
19 double test1(double x
)
29 long double test1l(long double x
)
44 int test2l(long double x
)