diff options
author | David Turner <digit@android.com> | 2010-05-11 10:20:15 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2010-05-11 10:20:15 -0700 |
commit | 7911e057a5ff835157d253d13e24c2cd9a26e935 (patch) | |
tree | c89be411efcbf388d8257742a0427ac32b41075f /libm | |
parent | 16b59c4c384a62a9b86efe060a6373506cde6e93 (diff) | |
parent | 72d3489612b77d4544e500a2a2a1783914ee56b7 (diff) | |
download | bionic-7911e057a5ff835157d253d13e24c2cd9a26e935.zip bionic-7911e057a5ff835157d253d13e24c2cd9a26e935.tar.gz bionic-7911e057a5ff835157d253d13e24c2cd9a26e935.tar.bz2 |
Merge "Reduce compiler anxiety."
Diffstat (limited to 'libm')
-rw-r--r-- | libm/src/e_atan2.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ __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 */ |