~ubuntu-branches/ubuntu/precise/eglibc/precise-201308281639

« back to all changes in this revision

Viewing changes to math/w_coshl.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-02-08 01:58:09 UTC
  • mfrom: (1.5.3) (288.1.12 precise)
  • Revision ID: package-import@ubuntu.com-20120208015809-ulscst7uteq3e22z
Tags: 2.15~pre6-0ubuntu10
Merge from Debian (r5151, 2.13-26).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* w_acoshl.c -- long double version of w_acosh.c.
2
2
 * Conversion to long double by Ulrich Drepper,
3
3
 * Cygnus Support, drepper@cygnus.com.
 
4
 * Optimizations bu Ulrich Drepper <drepper@gmail.com>, 2011.
4
5
 */
5
6
 
6
7
/*
14
15
 * ====================================================
15
16
 */
16
17
 
17
 
#if defined(LIBM_SCCS) && !defined(lint)
18
 
static char rcsid[] = "$NetBSD: $";
19
 
#endif
20
 
 
21
18
/*
22
19
 * wrapper coshl(x)
23
20
 */
24
21
 
25
22
#include <math.h>
26
 
#include "math_private.h"
 
23
#include <math_private.h>
27
24
 
28
 
#ifdef __STDC__
29
 
        long double __coshl(long double x)      /* wrapper coshl */
30
 
#else
31
 
        long double __coshl(x)                  /* wrapper coshl */
32
 
        long double x;
33
 
#endif
 
25
long double
 
26
__coshl (long double x)
34
27
{
35
 
#ifdef _IEEE_LIBM
36
 
        return __ieee754_coshl(x);
37
 
#else
38
 
        long double z;
39
 
        z = __ieee754_coshl(x);
40
 
        if(_LIB_VERSION == _IEEE_ || __isnanl(x)) return z;
41
 
        if(!__finitel(z) && __finitel(x)) {
42
 
                return __kernel_standard(x,x,205); /* cosh overflow */
43
 
        } else
44
 
            return z;
45
 
#endif
 
28
        long double z = __ieee754_coshl (x);
 
29
        if (__builtin_expect (!__finitel (z), 0) && __finitel (x)
 
30
            && _LIB_VERSION != _IEEE_)
 
31
                return __kernel_standard (x, x, 205); /* cosh overflow */
 
32
 
 
33
        return z;
46
34
}
47
35
weak_alias (__coshl, coshl)