tanl: Simplify for platforms where 'long double' == 'double'.
authorBruno Haible <bruno@clisp.org>
Tue, 11 Oct 2011 00:57:05 +0000 (02:57 +0200)
committerBruno Haible <bruno@clisp.org>
Tue, 11 Oct 2011 01:03:04 +0000 (03:03 +0200)
* lib/tanl.c (tanl) [HAVE_SAME_LONG_DOUBLE_AS_DOUBLE]: New alternative
implementation.
* m4/tanl.m4 (gl_FUNC_TANL): Require gl_LONG_DOUBLE_VS_DOUBLE.
Determine TANL_LIBM according to HAVE_SAME_LONG_DOUBLE_AS_DOUBLE.
* modules/tanl (Depends-on): Add tan. Update conditions.
(configure.ac): Don't compile trigl.c if
HAVE_SAME_LONG_DOUBLE_AS_DOUBLE.

ChangeLog
lib/tanl.c
m4/tanl.m4
modules/tanl

index 06c3b36..47991c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
 2011-10-10  Bruno Haible  <bruno@clisp.org>
 
+       tanl: Simplify for platforms where 'long double' == 'double'.
+       * lib/tanl.c (tanl) [HAVE_SAME_LONG_DOUBLE_AS_DOUBLE]: New alternative
+       implementation.
+       * m4/tanl.m4 (gl_FUNC_TANL): Require gl_LONG_DOUBLE_VS_DOUBLE.
+       Determine TANL_LIBM according to HAVE_SAME_LONG_DOUBLE_AS_DOUBLE.
+       * modules/tanl (Depends-on): Add tan. Update conditions.
+       (configure.ac): Don't compile trigl.c if
+       HAVE_SAME_LONG_DOUBLE_AS_DOUBLE.
+
+2011-10-10  Bruno Haible  <bruno@clisp.org>
+
        cosl: Simplify for platforms where 'long double' == 'double'.
        * lib/cosl.c (cosl) [HAVE_SAME_LONG_DOUBLE_AS_DOUBLE]: New alternative
        implementation.
index 07fbc09..e5efb06 100644 (file)
 /* Specification.  */
 #include <math.h>
 
+#if HAVE_SAME_LONG_DOUBLE_AS_DOUBLE
+
+long double
+tanl (long double x)
+{
+  return tan (x);
+}
+
+#else
+
 /* tanl(x)
  * Return tangent function of x.
  *
@@ -49,7 +59,7 @@
  *      TRIG(x) returns trig(x) nearly rounded
  */
 
-#include "trigl.h"
+# include "trigl.h"
 
 /*
  * ====================================================
@@ -208,6 +218,8 @@ tanl (long double x)
     }
 }
 
+#endif
+
 #if 0
 int
 main (void)
index db45e0c..0a1ab22 100644 (file)
@@ -1,4 +1,4 @@
-# tanl.m4 serial 5
+# tanl.m4 serial 6
 dnl Copyright (C) 2010-2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -7,6 +7,8 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_FUNC_TANL],
 [
   AC_REQUIRE([gl_MATH_H_DEFAULTS])
+  AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
+
   dnl Persuade glibc <math.h> to declare tanl().
   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
 
@@ -56,24 +58,29 @@ AC_DEFUN([gl_FUNC_TANL],
     HAVE_DECL_TANL=0
     HAVE_TANL=0
     dnl Find libraries needed to link lib/tanl.c, lib/trigl.c.
-    AC_REQUIRE([gl_FUNC_ISNANL])
-    AC_REQUIRE([gl_FUNC_FLOOR])
-    AC_REQUIRE([gl_FUNC_FLOORL])
-    dnl Append $ISNANL_LIBM to TANL_LIBM, avoiding gratuitous duplicates.
-    case " $TANL_LIBM " in
-      *" $ISNANL_LIBM "*) ;;
-      *) TANL_LIBM="$TANL_LIBM $ISNANL_LIBM" ;;
-    esac
-    dnl Append $FLOOR_LIBM to TANL_LIBM, avoiding gratuitous duplicates.
-    case " $TANL_LIBM " in
-      *" $FLOOR_LIBM "*) ;;
-      *) TANL_LIBM="$TANL_LIBM $FLOOR_LIBM" ;;
-    esac
-    dnl Append $FLOORL_LIBM to TANL_LIBM, avoiding gratuitous duplicates.
-    case " $TANL_LIBM " in
-      *" $FLOORL_LIBM "*) ;;
-      *) TANL_LIBM="$TANL_LIBM $FLOORL_LIBM" ;;
-    esac
+    if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
+      AC_REQUIRE([gl_FUNC_TAN])
+      TANL_LIBM="$TAN_LIBM"
+    else
+      AC_REQUIRE([gl_FUNC_ISNANL])
+      AC_REQUIRE([gl_FUNC_FLOOR])
+      AC_REQUIRE([gl_FUNC_FLOORL])
+      dnl Append $ISNANL_LIBM to TANL_LIBM, avoiding gratuitous duplicates.
+      case " $TANL_LIBM " in
+        *" $ISNANL_LIBM "*) ;;
+        *) TANL_LIBM="$TANL_LIBM $ISNANL_LIBM" ;;
+      esac
+      dnl Append $FLOOR_LIBM to TANL_LIBM, avoiding gratuitous duplicates.
+      case " $TANL_LIBM " in
+        *" $FLOOR_LIBM "*) ;;
+        *) TANL_LIBM="$TANL_LIBM $FLOOR_LIBM" ;;
+      esac
+      dnl Append $FLOORL_LIBM to TANL_LIBM, avoiding gratuitous duplicates.
+      case " $TANL_LIBM " in
+        *" $FLOORL_LIBM "*) ;;
+        *) TANL_LIBM="$TANL_LIBM $FLOORL_LIBM" ;;
+      esac
+    fi
   fi
   AC_SUBST([TANL_LIBM])
 ])
index ce1f20d..c91c6fe 100644 (file)
@@ -10,16 +10,19 @@ m4/tanl.m4
 Depends-on:
 math
 extensions
-float           [test $HAVE_TANL = 0]
-isnanl          [test $HAVE_TANL = 0]
-floor           [test $HAVE_TANL = 0]
-floorl          [test $HAVE_TANL = 0]
+tan             [test $HAVE_TANL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
+float           [test $HAVE_TANL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
+isnanl          [test $HAVE_TANL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
+floor           [test $HAVE_TANL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
+floorl          [test $HAVE_TANL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
 
 configure.ac:
 gl_FUNC_TANL
 if test $HAVE_TANL = 0; then
   AC_LIBOBJ([tanl])
-  AC_LIBOBJ([trigl])
+  if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0; then
+    AC_LIBOBJ([trigl])
+  fi
 fi
 gl_MATH_MODULE_INDICATOR([tanl])