Cygwin: math: Fix cosh(-INFINITY) to return +INFINITY
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
f4e7849fa9
commit
8dee6fe6a5
|
@ -21,7 +21,7 @@ long double coshl(long double x)
|
|||
else if (x_class == FP_INFINITE)
|
||||
{
|
||||
errno = ERANGE;
|
||||
return x;
|
||||
return INFINITY;
|
||||
}
|
||||
x = fabsl (x);
|
||||
if (x > (MAXLOGL + LOGE2L))
|
||||
|
|
Loading…
Reference in New Issue