commit | 7911e057a5ff835157d253d13e24c2cd9a26e935 | [log] [tgz] |
---|---|---|
author | David Turner <digit@android.com> | Tue May 11 10:20:15 2010 -0700 |
committer | Android Code Review <code-review@android.com> | Tue May 11 10:20:15 2010 -0700 |
tree | c89be411efcbf388d8257742a0427ac32b41075f | |
parent | 16b59c4c384a62a9b86efe060a6373506cde6e93 [diff] | |
parent | 72d3489612b77d4544e500a2a2a1783914ee56b7 [diff] |
Merge "Reduce compiler anxiety."
diff --git a/libm/src/e_atan2.c b/libm/src/e_atan2.c index 073f81b..56c05a5 100644 --- a/libm/src/e_atan2.c +++ b/libm/src/e_atan2.c
@@ -68,7 +68,7 @@ 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 */