Skip to content

Commit

Permalink
Fix for wrong ldbl128-ibm fmodl commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Adhemerval Zanella committed Jun 6, 2012
1 parent 6043738 commit 1b671fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions sysdeps/ieee754/ldbl-128ibm/e_fmodl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1b671fe

Please sign in to comment.