From d6713cb805ea27123ae9ef4b300fa86fb748a5dd Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sun, 16 Jan 2011 21:48:24 +0100 Subject: [PATCH] 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 --- libquadmath/ChangeLog | 3 +++ libquadmath/math/remquoq.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog index 376dcbe789e..0d518f7df79 100644 --- a/libquadmath/ChangeLog +++ b/libquadmath/ChangeLog @@ -1,5 +1,8 @@ 2011-01-16 Jakub Jelinek + PR libfortran/47322 + * math/remquoq.c (remquoq): Use uint64_t type instead of u_int64_t. + PR fortran/46625 * quadmath.map (QUADMATH_1.0): Remove quadmath_strtopQ and quadmath_dtoaq. Add strtoflt128 and quadmath_flt128tostr. diff --git a/libquadmath/math/remquoq.c b/libquadmath/math/remquoq.c index 3e3b4f68ce4..f7001afc3e5 100644 --- a/libquadmath/math/remquoq.c +++ b/libquadmath/math/remquoq.c @@ -29,7 +29,7 @@ __float128 remquoq (__float128 x, __float128 y, int *quo) { int64_t hx,hy; - u_int64_t sx,lx,ly,qs; + uint64_t sx,lx,ly,qs; int cquo; GET_FLT128_WORDS64 (hx, lx, x);