about summary refs log tree commit diff
path: root/math/s_clog10.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-09-25 19:43:49 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-09-25 19:43:49 +0000
commitd032e0d29b6ed9d3844916ada0ead19c3190ff9a (patch)
treea0ebd8e356dd8608c8e207d6a509a48b716ca537 /math/s_clog10.c
parentc8cb2a522493dc4a2d7f41694b00274eea2f5782 (diff)
downloadglibc-d032e0d29b6ed9d3844916ada0ead19c3190ff9a.tar.gz
glibc-d032e0d29b6ed9d3844916ada0ead19c3190ff9a.tar.xz
glibc-d032e0d29b6ed9d3844916ada0ead19c3190ff9a.zip
Fix inaccuracy of clog, clog10 near |z| = 1 (bug 13629).
Diffstat (limited to 'math/s_clog10.c')
-rw-r--r--math/s_clog10.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/math/s_clog10.c b/math/s_clog10.c
index ef997ee76c..4ccb5bcaa9 100644
--- a/math/s_clog10.c
+++ b/math/s_clog10.c
@@ -88,6 +88,19 @@ __clog10 (__complex__ double x)
 	    d2m1 += absy * absy;
 	  __real__ result = __log1p (d2m1) * (M_LOG10E / 2.0);
 	}
+      else if (absx < 1.0
+	       && absx >= 0.75
+	       && absy < DBL_EPSILON / 2.0
+	       && scale == 0)
+	{
+	  double d2m1 = (absx - 1.0) * (absx + 1.0);
+	  __real__ result = __log1p (d2m1) * (M_LOG10E / 2.0);
+	}
+      else if (absx < 1.0 && (absx >= 0.75 || absy >= 0.5) && scale == 0)
+	{
+	  double d2m1 = __x2y2m1 (absx, absy);
+	  __real__ result = __log1p (d2m1) * (M_LOG10E / 2.0);
+	}
       else
 	{
 	  double d = __ieee754_hypot (absx, absy);