mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Improve clog, clog10 handling of values with real or imaginary part slightly above 1 (bug 13629).
This commit is contained in:
@ -83,6 +83,13 @@ __clog10f (__complex__ float x)
|
||||
else
|
||||
__real__ result = __log1pf (absy2) * ((float) M_LOG10E / 2.0f);
|
||||
}
|
||||
else if (absx > 1.0f && absx < 2.0f && absy < 1.0f && scale == 0)
|
||||
{
|
||||
float d2m1 = (absx - 1.0f) * (absx + 1.0f);
|
||||
if (absy >= FLT_EPSILON)
|
||||
d2m1 += absy * absy;
|
||||
__real__ result = __log1pf (d2m1) * ((float) M_LOG10E / 2.0f);
|
||||
}
|
||||
else
|
||||
{
|
||||
float d = __ieee754_hypotf (absx, absy);
|
||||
|
Reference in New Issue
Block a user