about summary refs log tree commit diff
path: root/sysdeps/ieee754/flt-32
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-03-01 21:15:38 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-03-01 21:15:38 +0000
commit7b1902cb3e64d340247638a8781770c3a4d850ce (patch)
treedc06e102ffa43897515baa0d67cbb944b7a45d77 /sysdeps/ieee754/flt-32
parentf775c276fd1f89cc9d561db0890a356e7d6e50b8 (diff)
downloadglibc-7b1902cb3e64d340247638a8781770c3a4d850ce.tar.gz
glibc-7b1902cb3e64d340247638a8781770c3a4d850ce.tar.xz
glibc-7b1902cb3e64d340247638a8781770c3a4d850ce.zip
Improve erfc accuracy.
Diffstat (limited to 'sysdeps/ieee754/flt-32')
-rw-r--r--sysdeps/ieee754/flt-32/s_erff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_erff.c b/sysdeps/ieee754/flt-32/s_erff.c
index 576618309b..8a0610d5c5 100644
--- a/sysdeps/ieee754/flt-32/s_erff.c
+++ b/sysdeps/ieee754/flt-32/s_erff.c
@@ -200,7 +200,7 @@ float __erfcf(float x)
 				sb5+s*(sb6+s*sb7))))));
 	    }
 	    GET_FLOAT_WORD(ix,x);
-	    SET_FLOAT_WORD(z,ix&0xfffff000);
+	    SET_FLOAT_WORD(z,ix&0xffffe000);
 	    r  =  __ieee754_expf(-z*z-(float)0.5625)*
 			__ieee754_expf((z-x)*(z+x)+R/S);
 	    if(hx>0) return r/x; else return two-r/x;