From 72d3489612b77d4544e500a2a2a1783914ee56b7 Mon Sep 17 00:00:00 2001 From: Scott Turner Date: Sat, 16 Jan 2010 10:39:00 -0500 Subject: [PATCH] Reduce compiler anxiety. Warning from compiler: target arm C: libm <= bionic/libm/src/e_atan2.c bionic/libm/src/e_atan2.c: In function 'atan2': bionic/libm/src/e_atan2.c:71: warning: suggest parentheses around arithmetic in operand of '|' target arm C: libm <= bionic/libm/src/e_atan2f.c --- libm/src/e_atan2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libm/src/e_atan2.c b/libm/src/e_atan2.c index 073f81b4c..56c05a5d9 100644 --- a/libm/src/e_atan2.c +++ b/libm/src/e_atan2.c @@ -68,7 +68,7 @@ __ieee754_atan2(double y, double x) 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 atan(y); /* x=1.0 */ + if(((hx-0x3ff00000) | lx)==0) return atan(y); /* x=1.0 */ m = ((hy>>31)&1)|((hx>>30)&2); /* 2*sign(x)+sign(y) */ /* when y = 0 */