mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Fix csin, csinh, ccos, ccosh missing underflows (bug 15405).
This commit is contained in:
@ -82,6 +82,19 @@ __ccosh (__complex__ double x)
|
||||
__real__ retval = __ieee754_cosh (__real__ x) * cosix;
|
||||
__imag__ retval = __ieee754_sinh (__real__ x) * sinix;
|
||||
}
|
||||
|
||||
if (fabs (__real__ retval) < DBL_MIN)
|
||||
{
|
||||
volatile double force_underflow
|
||||
= __real__ retval * __real__ retval;
|
||||
(void) force_underflow;
|
||||
}
|
||||
if (fabs (__imag__ retval) < DBL_MIN)
|
||||
{
|
||||
volatile double force_underflow
|
||||
= __imag__ retval * __imag__ retval;
|
||||
(void) force_underflow;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user