| author | |
| committer | |
| log | 3c2841c2020e2a0630b0a0b1b97f07c75c770368 |
| tree | af6e851f70ce2b211b0a45f2644e4c91280714f2 |
| parent | 214f2fc395da2e6e5ffa592b89ea20db47d3fca6 |
Co-authored-by: WiserOrb <diego99.masotti@gmail.com>1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/math/atan.zig+1-1| ... | @@ -161,7 +161,7 @@ fn atan64(x_: f64) f64 { | ... | @@ -161,7 +161,7 @@ fn atan64(x_: f64) f64 { |
| 161 | var id: ?usize = undefined; | 161 | var id: ?usize = undefined; |
| 162 | 162 | ||
| 163 | // |x| < 0.4375 | 163 | // |x| < 0.4375 |
| 164 | if (ix < 0x3DFC0000) { | 164 | if (ix < 0x3FDC0000) { |
| 165 | // |x| < 2^(-27) | 165 | // |x| < 2^(-27) |
| 166 | if (ix < 0x3E400000) { | 166 | if (ix < 0x3E400000) { |
| 167 | if (ix < 0x00100000) { | 167 | if (ix < 0x00100000) { |