From: Adhemerval Zanella Date: Wed, 6 Jun 2012 00:31:24 +0000 (-0300) Subject: Fix for wrong ldbl128-ibm fmodl commit X-Git-Tag: glibc-2.16-tps~57 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=1b671feb6115afbc90a7b37be4929d3e0394f311;p=glibc.git Fix for wrong ldbl128-ibm fmodl commit --- diff --git a/ChangeLog b/ChangeLog index dc61b0dd89..1615aad42f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-06-05 Adhemerval Zanella + + * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm + fmodl commit. + 2012-06-05 Adhemerval Zanella * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for diff --git a/sysdeps/ieee754/ldbl-128ibm/e_fmodl.c b/sysdeps/ieee754/ldbl-128ibm/e_fmodl.c index 31e709b5d5..a60963c84d 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);