aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-09-26 18:42:57 +0000
committerUlrich Drepper <drepper@redhat.com>2000-09-26 18:42:57 +0000
commite161e6c8ee7664621ba2cb4324a8c31c8d7aca73 (patch)
treef74a14de7ace5f5dd168f1a98ad5b721f4e3d2a4 /sysdeps/ieee754
parent2b02551e44803d1208d0ce18dc17cedaff5f70fc (diff)
downloadglibc-e161e6c8ee7664621ba2cb4324a8c31c8d7aca73.tar
glibc-e161e6c8ee7664621ba2cb4324a8c31c8d7aca73.tar.gz
glibc-e161e6c8ee7664621ba2cb4324a8c31c8d7aca73.tar.bz2
glibc-e161e6c8ee7664621ba2cb4324a8c31c8d7aca73.zip
(__ieee754_atan2l): Add parentheses around arithmetic used in | statement to kill compiler warning.
Diffstat (limited to 'sysdeps/ieee754')
-rw-r--r--sysdeps/ieee754/ldbl-96/e_atan2l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-96/e_atan2l.c b/sysdeps/ieee754/ldbl-96/e_atan2l.c
index aff7a3d976..0759458c2f 100644
--- a/sysdeps/ieee754/ldbl-96/e_atan2l.c
+++ b/sysdeps/ieee754/ldbl-96/e_atan2l.c
@@ -80,7 +80,7 @@ pi_lo = -5.01655761266833202345176e-20L;/* 0xBFBE, 0xECE675D1, 0xFC8F8CBB */
if(((2*ix|((lx|-lx)>>31))>0xfffe)||
((2*iy|((ly|-ly)>>31))>0xfffe)) /* x or y is NaN */
return x+y;
- if((sx-0x3fff|lx)==0) return __atanl(y); /* x=1.0 */
+ if(((sx-0x3fff)|lx)==0) return __atanl(y); /* x=1.0 */
m = ((sy>>15)&1)|((sx>>14)&2); /* 2*sign(x)+sign(y) */
/* when y = 0 */