2003-01-20 Segher Boessenkool <segher@koffie.nl>

* sysdeps/ieee754/dbl-64/sincos32.c (__mpcos): Really
	compute the cosine, not the sine, even if x > 0.8.
This commit is contained in:
Roland McGrath 2003-01-20 05:25:30 +00:00
parent b677d67428
commit 86583139a4

View 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);