]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2003-01-20 Segher Boessenkool <segher@koffie.nl>
authorRoland McGrath <roland@gnu.org>
Mon, 20 Jan 2003 05:25:30 +0000 (05:25 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 20 Jan 2003 05:25:30 +0000 (05:25 +0000)
* sysdeps/ieee754/dbl-64/sincos32.c (__mpcos): Really
compute the cosine, not the sine, even if x > 0.8.

sysdeps/ieee754/dbl-64/sincos32.c

index 989982ecdfd948088b795ec6b29b1ae23f52a85a..a4f896a4659f5105fd2cc7f681912108c1a99175 100644 (file)
@@ -214,7 +214,7 @@ double __mpcos(double x, double dx) {
   __add(&a,&b,&c,p);
   if (x>0.8)
   { __sub(&hp,&c,&b,p);
-    __c32(&b,&a,&c,p);
+    __c32(&b,&c,&a,p);
   }
   else __c32(&c,&a,&b,p);     /* a = cos(x+dx)     */
   __mp_dbl(&a,&y,p);