mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 14:19:15 +08:00
* math/powq.c (powq): Use uint32_t instead of u_int32_t.
From-SVN: r250367
This commit is contained in:
parent
304a15ec64
commit
a8d6055a56
@ -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…
x
Reference in New Issue
Block a user