1996-03-05 22:41:30 +01:00
|
|
|
/* w_sinhf.c -- float version of w_sinh.c.
|
|
|
|
* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
2011-10-12 17:27:51 +02:00
|
|
|
* software is freely granted, provided that this notice
|
1996-03-05 22:41:30 +01:00
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
2011-10-12 17:27:51 +02:00
|
|
|
/*
|
1996-03-05 22:41:30 +01:00
|
|
|
* wrapper sinhf(x)
|
|
|
|
*/
|
|
|
|
|
2005-12-14 16:06:39 +01:00
|
|
|
#include <math.h>
|
2011-10-08 11:16:04 +02:00
|
|
|
#include <math_private.h>
|
1996-03-05 22:41:30 +01:00
|
|
|
|
2011-10-12 17:27:51 +02:00
|
|
|
float
|
|
|
|
__sinhf (float x)
|
1996-03-05 22:41:30 +01:00
|
|
|
{
|
2011-10-12 17:27:51 +02:00
|
|
|
float z = __ieee754_sinhf (x);
|
2015-06-03 16:36:34 +02:00
|
|
|
if (__builtin_expect (!isfinite (z), 0) && isfinite (x)
|
2011-10-12 17:27:51 +02:00
|
|
|
&& _LIB_VERSION != _IEEE_)
|
|
|
|
return __kernel_standard_f (x, x, 125); /* sinhf overflow */
|
|
|
|
|
|
|
|
return z;
|
1996-03-05 22:41:30 +01:00
|
|
|
}
|
|
|
|
weak_alias (__sinhf, sinhf)
|