diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-01-16 21:48:24 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-01-16 21:48:24 +0100 |
commit | d6713cb805ea27123ae9ef4b300fa86fb748a5dd (patch) | |
tree | ff6d6849e841791425a26b624e56499e3a0c979c /libquadmath/math | |
parent | 85b1217ad1919013548c2a09373b69551cc09aca (diff) | |
download | gcc-d6713cb805ea27123ae9ef4b300fa86fb748a5dd.zip gcc-d6713cb805ea27123ae9ef4b300fa86fb748a5dd.tar.gz gcc-d6713cb805ea27123ae9ef4b300fa86fb748a5dd.tar.bz2 |
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
Diffstat (limited to 'libquadmath/math')
-rw-r--r-- | libquadmath/math/remquoq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libquadmath/math/remquoq.c b/libquadmath/math/remquoq.c index 3e3b4f6..f7001af 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); |