mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
Fix for wrong ldbl128-ibm fmodl commit
This commit is contained in:
parent
6043738b36
commit
1b671feb61
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user