diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2012-06-05 21:31:24 -0300 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2012-06-05 21:33:23 -0300 |
commit | 1b671feb6115afbc90a7b37be4929d3e0394f311 (patch) | |
tree | e70a5fea28d927f589ab011a0382e4761fdba8b1 | |
parent | 6043738b3692bd542fc47596628aefc8dba75523 (diff) | |
download | glibc-1b671feb6115afbc90a7b37be4929d3e0394f311.zip glibc-1b671feb6115afbc90a7b37be4929d3e0394f311.tar.gz glibc-1b671feb6115afbc90a7b37be4929d3e0394f311.tar.bz2 |
Fix for wrong ldbl128-ibm fmodl commit
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/ieee754/ldbl-128ibm/e_fmodl.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2012-06-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com> + * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm + fmodl commit. + +2012-06-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com> + * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for values higher than 25.6283. diff --git a/sysdeps/ieee754/ldbl-128ibm/e_fmodl.c b/sysdeps/ieee754/ldbl-128ibm/e_fmodl.c index 31e709b..a60963c 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_fmodl.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_fmodl.c @@ -27,8 +27,8 @@ static const long double one = 1.0, Zero[] = {0.0, -0.0,}; long double __ieee754_fmodl (long double x, long double y) { - int64_t n,hx,hy,hz,ix,iy,sx; - u_int64_t lx,ly,lz, i; + int64_t n,hx,hy,hz,ix,iy,sx, i; + u_int64_t lx,ly,lz; int temp; GET_LDOUBLE_WORDS64(hx,lx,x); |