Commit a8d6055a by Gerald Pfeifer Committed by Gerald Pfeifer

* math/powq.c (powq): Use uint32_t instead of u_int32_t.

From-SVN: r250367
parent 304a15ec
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> 2017-07-19 Jakub Jelinek <jakub@redhat.com>
PR libquadmath/65757 PR libquadmath/65757
......
...@@ -263,7 +263,7 @@ powq (__float128 x, __float128 y) ...@@ -263,7 +263,7 @@ powq (__float128 x, __float128 y)
/* sgn (sign of result -ve**odd) = -1 else = 1 */ /* sgn (sign of result -ve**odd) = -1 else = 1 */
sgn = one; 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) */ sgn = -one; /* (-ve)**(odd int) */
/* |y| is huge. /* |y| is huge.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment