From ca61cf32d934eda9130c4d3c6911892877ad7b0d Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 4 Jul 2012 09:55:26 +0000 Subject: Fix ctan, ctanh of subnormals in round-upwards mode (bug 14328). --- math/s_ctanf.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'math/s_ctanf.c') diff --git a/math/s_ctanf.c b/math/s_ctanf.c index 4cba559a44..2559f83f84 100644 --- a/math/s_ctanf.c +++ b/math/s_ctanf.c @@ -83,10 +83,22 @@ __ctanf (__complex__ float x) } else { - float sinhix = __ieee754_sinhf (__imag__ x); - float coshix = __ieee754_coshf (__imag__ x); + float sinhix, coshix; + if (fabsf (__imag__ x) > FLT_MIN) + { + sinhix = __ieee754_sinhf (__imag__ x); + coshix = __ieee754_coshf (__imag__ x); + } + else + { + sinhix = __imag__ x; + coshix = 1.0f; + } - den = cosrx * cosrx + sinhix * sinhix; + if (fabsf (sinhix) > fabsf (cosrx) * FLT_EPSILON) + den = cosrx * cosrx + sinhix * sinhix; + else + den = cosrx * cosrx; __real__ res = sinrx * cosrx / den; __imag__ res = sinhix * coshix / den; } -- cgit 1.4.1