(__ieee754_atan2l): Add parentheses around arithmetic used in | statement to kill...
authorUlrich Drepper <drepper@redhat.com>
Tue, 26 Sep 2000 18:42:57 +0000 (18:42 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 26 Sep 2000 18:42:57 +0000 (18:42 +0000)
sysdeps/ieee754/ldbl-96/e_atan2l.c

index aff7a3d..0759458 100644 (file)
@@ -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 */