From: Roland McGrath Date: Mon, 20 Jan 2003 05:25:30 +0000 (+0000) Subject: 2003-01-20 Segher Boessenkool X-Git-Tag: upstream/2.30~20219 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=86583139a4d746743ccffcd72e25d96c5fb8d488;p=external%2Fglibc.git 2003-01-20 Segher Boessenkool * sysdeps/ieee754/dbl-64/sincos32.c (__mpcos): Really compute the cosine, not the sine, even if x > 0.8. --- diff --git a/sysdeps/ieee754/dbl-64/sincos32.c b/sysdeps/ieee754/dbl-64/sincos32.c index 989982e..a4f896a 100644 --- a/sysdeps/ieee754/dbl-64/sincos32.c +++ b/sysdeps/ieee754/dbl-64/sincos32.c @@ -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);