diff options
author | Andreas Jaeger <aj@suse.de> | 2001-06-22 15:03:32 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-06-22 15:03:32 +0000 |
commit | 37695e8f0f78b0545aaefdce856571b92ef4dce7 (patch) | |
tree | 67c656d32098da730bec87e8c26d7102ca6b1339 /sysdeps/i386/fpu/s_nextafterl.c | |
parent | e15df0bbd7b7a6d9973f691c850a330b3c9676cf (diff) | |
download | glibc-37695e8f0f78b0545aaefdce856571b92ef4dce7.tar.gz |
Update.
* sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Add parenthese
to avoid warnings.
* sysdeps/i386/fpu/e_expl.c (__ieee754_expl): Remove unused
variable.
Add unused attributes to avoid warnings.
Diffstat (limited to 'sysdeps/i386/fpu/s_nextafterl.c')
-rw-r--r-- | sysdeps/i386/fpu/s_nextafterl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/fpu/s_nextafterl.c b/sysdeps/i386/fpu/s_nextafterl.c index a6ead79221..eaf3b0b83a 100644 --- a/sysdeps/i386/fpu/s_nextafterl.c +++ b/sysdeps/i386/fpu/s_nextafterl.c @@ -47,8 +47,8 @@ static char rcsid[] = "$NetBSD: $"; /* Intel's extended format has the normally implicit 1 explicit present. Sigh! */ - if(((ix==0x7fff)&&((hx&0x7fffffff|lx)!=0)) || /* x is nan */ - ((iy==0x7fff)&&((hy&0x7fffffff|ly)!=0))) /* y is nan */ + if(((ix==0x7fff)&&(((hx&0x7fffffff)|lx)!=0)) || /* x is nan */ + ((iy==0x7fff)&&(((hy&0x7fffffff)|ly)!=0))) /* y is nan */ return x+y; if(x==y) return y; /* x=y, return y */ if((ix|hx|lx)==0) { /* x == 0 */ |