aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/builtins-34.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/builtins-34.c')
-rw-r--r--gcc/testsuite/gcc.dg/builtins-34.c66
1 files changed, 0 insertions, 66 deletions
diff --git a/gcc/testsuite/gcc.dg/builtins-34.c b/gcc/testsuite/gcc.dg/builtins-34.c
deleted file mode 100644
index d2bf4d41219..00000000000
--- a/gcc/testsuite/gcc.dg/builtins-34.c
+++ /dev/null
@@ -1,66 +0,0 @@
-/* Copyright (C) 2004 Free Software Foundation.
-
- Check that exp10, exp10f, exp10l, exp2, exp2f, exp2l, pow10, pow10f
- and pow10l built-in functions compile.
-
- Written by Uros Bizjak, 13th February 2004. */
-
-/* { dg-do compile } */
-/* { dg-options "-O2 -ffast-math" } */
-
-extern double exp10(double);
-extern double exp2(double);
-extern double pow10(double);
-extern float exp10f(float);
-extern float exp2f(float);
-extern float pow10f(float);
-extern long double exp10l(long double);
-extern long double exp2l(long double);
-extern long double pow10l(long double);
-
-
-double test1(double x)
-{
- return exp10(x);
-}
-
-double test2(double x)
-{
- return exp2(x);
-}
-
-double test3(double x)
-{
- return pow10(x);
-}
-
-float test1f(float x)
-{
- return exp10f(x);
-}
-
-float test2f(float x)
-{
- return exp2f(x);
-}
-
-float test3f(float x)
-{
- return pow10f(x);
-}
-
-long double test1l(long double x)
-{
- return exp10l(x);
-}
-
-long double test2l(long double x)
-{
- return exp2l(x);
-}
-
-long double test3l(long double x)
-{
- return pow10l(x);
-}
-