re PR libfortran/47322 (libquadmath breaks bootstrap on x86_64-unknown-freebsd8.2)
authorJakub Jelinek <jakub@redhat.com>
Sun, 16 Jan 2011 20:48:24 +0000 (21:48 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sun, 16 Jan 2011 20:48:24 +0000 (21:48 +0100)
PR libfortran/47322
* math/remquoq.c (remquoq): Use uint64_t type instead of u_int64_t.

From-SVN: r168872

libquadmath/ChangeLog
libquadmath/math/remquoq.c

index 376dcbe789eaee69642a1ff4f1c5ec6dd2dbbc75..0d518f7df79ea844ea9d36bb4f411b092cab692e 100644 (file)
@@ -1,5 +1,8 @@
 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
        * quadmath.map (QUADMATH_1.0): Remove quadmath_strtopQ
        and quadmath_dtoaq.  Add strtoflt128 and quadmath_flt128tostr.
index 3e3b4f68ce4e3f3c713af3f07ab3627e3c945575..f7001afc3e5ff99956c14887cbd78b744ae0055c 100644 (file)
@@ -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);