mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
The high part of the mantissa is 64 bits on sparc64.
This commit is contained in:
parent
16608a810d
commit
71da0e146b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181063
@ -132,7 +132,7 @@ fmodl(long double x, long double y)
|
||||
/* convert back to floating value and restore the sign */
|
||||
if((hx|lx)==0) /* return sign(x)*0 */
|
||||
return Zero[sx];
|
||||
while(hx<(1U<<HFRAC_BITS)) { /* normalize x */
|
||||
while(hx<(1ULL<<HFRAC_BITS)) { /* normalize x */
|
||||
hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;
|
||||
iy -= 1;
|
||||
}
|
||||
|
@ -141,7 +141,7 @@ remquol(long double x, long double y, int *quo)
|
||||
*quo = (sxy ? -q : q);
|
||||
return Zero[sx];
|
||||
}
|
||||
while(hx<(1U<<HFRAC_BITS)) { /* normalize x */
|
||||
while(hx<(1ULL<<HFRAC_BITS)) { /* normalize x */
|
||||
hx = hx+hx+(lx>>MANL_SHIFT); lx = lx+lx;
|
||||
iy -= 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user