Fix parentheses.

This commit is contained in:
Andreas Jaeger 2001-10-16 11:02:24 +00:00
parent 3a0b74737c
commit c831ae5490

View File

@ -43,8 +43,8 @@ static char rcsid[] = "$NetBSD: $";
ix = esx&0x7fff; /* |x| */
iy = esy&0x7fff; /* |y| */
if(((ix==0x7fff)&&((hx|lx)!=0) || /* x is nan */
((iy==0x7fff)&&((hy|ly)!=0)) /* y is nan */
if (((ix==0x7fff)&&((hx|lx)!=0)) || /* x is nan */
((iy==0x7fff)&&((hy|ly)!=0))) /* y is nan */
return x+y;
if(x==y) return y; /* x=y, return y */
if((ix|hx|lx)==0) { /* x == 0 */