diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-10-26 11:37:08 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-10-26 11:44:08 +0200 |
commit | 804791474dc1f0904f6d91ef66dbbbc322991e0b (patch) | |
tree | 45bbe2612165bf4b252de5e9efbdd8c214f62dfe /sysdeps/ieee754/flt-32/e_j0f.c | |
parent | f6ce9294b0a6c5a847109cc41b7ad0c838b9ccfe (diff) | |
download | glibc-804791474dc1f0904f6d91ef66dbbbc322991e0b.zip glibc-804791474dc1f0904f6d91ef66dbbbc322991e0b.tar.gz glibc-804791474dc1f0904f6d91ef66dbbbc322991e0b.tar.bz2 |
Fix uses of math_force_eval
Diffstat (limited to 'sysdeps/ieee754/flt-32/e_j0f.c')
-rw-r--r-- | sysdeps/ieee754/flt-32/e_j0f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/e_j0f.c b/sysdeps/ieee754/flt-32/e_j0f.c index 181c2e4..0cc52c9 100644 --- a/sysdeps/ieee754/flt-32/e_j0f.c +++ b/sysdeps/ieee754/flt-32/e_j0f.c @@ -66,7 +66,7 @@ __ieee754_j0f(float x) return z; } if(ix<0x39000000) { /* |x| < 2**-13 */ - math_force_eval(huge+x>one); /* raise inexact if x != 0 */ + math_force_eval(huge+x); /* raise inexact if x != 0 */ if(ix<0x32000000) return one; /* |x|<2**-27 */ else return one - (float)0.25*x*x; } |