From: Adhemerval Zanella Date: Wed, 6 Jun 2012 00:31:24 +0000 (-0300) Subject: Fix for wrong ldbl128-ibm fmodl commit X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b640404bd8c9a281502ccc87ab2ed640c9b4c085;p=thirdparty%2Fglibc.git Fix for wrong ldbl128-ibm fmodl commit (cherry picked from commit 1b671feb6115afbc90a7b37be4929d3e0394f311) --- diff --git a/ChangeLog b/ChangeLog index 81b3b1c9395..6a9c536141c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,11 @@ * sysdeps/mach/configure: Likewise. * sysdeps/mach/hurd/configure: Likewise. +2012-06-05 Adhemerval Zanella + + * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm + fmodl commit. + 2012-06-04 Adhemerval Zanella * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix diff --git a/sysdeps/ieee754/ldbl-128ibm/e_fmodl.c b/sysdeps/ieee754/ldbl-128ibm/e_fmodl.c index deddb855012..033fde7ec61 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);