]> sourceware.org Git - 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)
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Wed, 6 Jun 2012 00:33:23 +0000 (21:33 -0300)
ChangeLog
sysdeps/ieee754/ldbl-128ibm/e_fmodl.c

index dc61b0dd892bb84341533367d1727bc074940df9..1615aad42f025d7351900b8cec63171414bb6406 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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
index 31e709b5d5efec8980f330aceb7d1bd88587fb8f..a60963c84dde5a706d3fd07bc9877fcde57af90e 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);
This page took 0.097204 seconds and 5 git commands to generate.