diff options
| author | Steve Kargl <kargl@FreeBSD.org> | 2014-12-08 15:47:52 +0000 |
|---|---|---|
| committer | Steve Kargl <kargl@FreeBSD.org> | 2014-12-08 15:47:52 +0000 |
| commit | 5dc4735cb3962fdde1c5025a96c534fdc529e494 (patch) | |
| tree | 7df6f63d9b143b78619d294be92ad00deac97475 /lib | |
| parent | 4c16f1b11138fadc072c74fc166ccbfbabadbf83 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/msun/src/e_j0f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/e_j0f.c b/lib/msun/src/e_j0f.c index 78f6f6518d1f8..f7c463bdf7da1 100644 --- a/lib/msun/src/e_j0f.c +++ b/lib/msun/src/e_j0f.c @@ -69,7 +69,7 @@ __ieee754_j0f(float x) } return z; } - if(ix<0x3c000000) { /* |x| < 2**-7 */ + if(ix<0x3b000000) { /* |x| < 2**-9 */ if(huge+x>one) { /* raise inexact if x != 0 */ if(ix<0x39800000) return one; /* |x|<2**-12 */ else return one - x*x/4; |
