From 1dd548500f4b9f8526faebedd19c697a8dba57d9 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 4 Jun 2000 16:39:33 +0000 Subject: Update. 2000-06-04 Jakub Jelinek * sysdeps/i386/fpu/bits/mathinline.h: Only inline sinh, cosh and tanh if -ffast-math. --- sysdeps/i386/fpu/bits/mathinline.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h index 50bfcde957..38c7405bc1 100644 --- a/sysdeps/i386/fpu/bits/mathinline.h +++ b/sysdeps/i386/fpu/bits/mathinline.h @@ -513,6 +513,7 @@ __inline_mathcode_ (long double, __sgn1l, __x, \ return __n.__xld) +#ifdef __FAST_MATH__ /* The argument range of the inline version of sinhl is slightly reduced. */ __inline_mathcodeNP (sinh, __x, \ register long double __exm1 = __expm1l (__fabsl (__x)); \ @@ -525,7 +526,7 @@ __inline_mathcodeNP (cosh, __x, \ __inline_mathcodeNP (tanh, __x, \ register long double __exm1 = __expm1l (-__fabsl (__x + __x)); \ return __exm1 / (__exm1 + 2.0) * __sgn1l (-__x)) - +#endif __inline_mathcodeNP (floor, __x, \ register long double __value; \ -- cgit 1.4.1