Skip to content
Snippets Groups Projects
Commit af7c3d96 authored by Raymond Toy's avatar Raymond Toy
Browse files

Add parens around operands of | to silence a compiler warning with gcc

4.4.1 on Linux.
parent 59ad6f51
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ pi_lo = 1.2246467991473531772E-16; /* 0x3CA1A626, 0x33145C07 */
if(((ix|((lx|-lx)>>31))>0x7ff00000)||
((iy|((ly|-ly)>>31))>0x7ff00000)) /* x or y is NaN */
return x+y;
if((hx-0x3ff00000|lx)==0) return fdlibm_atan(y); /* x=1.0 */
if(((hx-0x3ff00000)|lx)==0) return fdlibm_atan(y); /* x=1.0 */
m = ((hy>>31)&1)|((hx>>30)&2); /* 2*sign(x)+sign(y) */
/* when y = 0 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment