]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix for wrong ldbl128-ibm fmodl commit
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Wed, 6 Jun 2012 00:31:24 +0000 (21:31 -0300)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 25 Jun 2012 23:14:10 +0000 (23:14 +0000)
(cherry picked from commit 1b671feb6115afbc90a7b37be4929d3e0394f311)

ChangeLog
sysdeps/ieee754/ldbl-128ibm/e_fmodl.c

index 81b3b1c93954a6dcbcffaf8df6e1ce2395169b30..6a9c536141ca1b70986a8603050816642c63133f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        * sysdeps/mach/configure: Likewise.
        * sysdeps/mach/hurd/configure: Likewise.
 
+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-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
        * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix
index deddb85501217289933a6ea3416de39ffdc22dcd..033fde7ec6136287ea34914465259e6293a76733 100644 (file)
@@ -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);