re PR libfortran/47322 (libquadmath breaks bootstrap on x86_64-unknown-freebsd8.2)
PR libfortran/47322 * math/remquoq.c (remquoq): Use uint64_t type instead of u_int64_t. From-SVN: r168872
This commit is contained in:
parent
85b1217ad1
commit
d6713cb805
@ -1,5 +1,8 @@
|
|||||||
2011-01-16 Jakub Jelinek <jakub@redhat.com>
|
2011-01-16 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR libfortran/47322
|
||||||
|
* math/remquoq.c (remquoq): Use uint64_t type instead of u_int64_t.
|
||||||
|
|
||||||
PR fortran/46625
|
PR fortran/46625
|
||||||
* quadmath.map (QUADMATH_1.0): Remove quadmath_strtopQ
|
* quadmath.map (QUADMATH_1.0): Remove quadmath_strtopQ
|
||||||
and quadmath_dtoaq. Add strtoflt128 and quadmath_flt128tostr.
|
and quadmath_dtoaq. Add strtoflt128 and quadmath_flt128tostr.
|
||||||
|
@ -29,7 +29,7 @@ __float128
|
|||||||
remquoq (__float128 x, __float128 y, int *quo)
|
remquoq (__float128 x, __float128 y, int *quo)
|
||||||
{
|
{
|
||||||
int64_t hx,hy;
|
int64_t hx,hy;
|
||||||
u_int64_t sx,lx,ly,qs;
|
uint64_t sx,lx,ly,qs;
|
||||||
int cquo;
|
int cquo;
|
||||||
|
|
||||||
GET_FLT128_WORDS64 (hx, lx, x);
|
GET_FLT128_WORDS64 (hx, lx, x);
|
||||||
|
Loading…
Reference in New Issue
Block a user