mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
Fix parentheses.
This commit is contained in:
parent
3a0b74737c
commit
c831ae5490
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user