* math/powq.c (powq): Use uint32_t instead of u_int32_t.
From-SVN: r250367
This commit is contained in:
parent
304a15ec64
commit
a8d6055a56
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue