]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* math/powq.c (powq): Use uint32_t instead of u_int32_t.
authorgerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Jul 2017 19:53:58 +0000 (19:53 +0000)
committergerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Jul 2017 19:53:58 +0000 (19:53 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@250367 138bc75d-0d04-0410-961f-82ee72b054a4

libquadmath/ChangeLog
libquadmath/math/powq.c

index 73d0e3077c5effa7e76590602818cabc13d5bf7f..bc37c3f66ba93d51426725530707b4464c74f2b0 100644 (file)
@@ -1,3 +1,7 @@
+2017-07-19  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * math/powq.c (powq): Use uint32_t instead of u_int32_t.
+
 2017-07-19  Jakub Jelinek  <jakub@redhat.com>
 
        PR libquadmath/65757
index acad2057516a0a6450b58a57c32fe67a27e2c297..4d586d6534a664a17ce30ce86a1886e68dbf08c9 100644 (file)
@@ -263,7 +263,7 @@ powq (__float128 x, __float128 y)
 
   /* sgn (sign of result -ve**odd) = -1 else = 1 */
   sgn = one;
-  if (((((u_int32_t) hx >> 31) - 1) | (yisint - 1)) == 0)
+  if (((((uint32_t) hx >> 31) - 1) | (yisint - 1)) == 0)
     sgn = -one;                                /* (-ve)**(odd int) */
 
   /* |y| is huge.