summaryrefslogtreecommitdiff
path: root/sysdeps/powerpc/fpu/e_hypotf.c
diff options
context:
space:
mode:
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>2013-05-17 08:12:16 -0500
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>2013-05-17 08:15:59 -0500
commit13d3b41a36c4f28d171a144f8a9baad3a8835981 (patch)
tree2e4498103760e4ac92de2c5e06e5b64c7ac29c7a /sysdeps/powerpc/fpu/e_hypotf.c
parent2848b105856e49d98f3c5026b6d8d790f9723c0c (diff)
PowerPC: fix hypot/hypotf check for -INF
Diffstat (limited to 'sysdeps/powerpc/fpu/e_hypotf.c')
-rw-r--r--sysdeps/powerpc/fpu/e_hypotf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/powerpc/fpu/e_hypotf.c b/sysdeps/powerpc/fpu/e_hypotf.c
index 3ccd385316..5fc91ee4c6 100644
--- a/sysdeps/powerpc/fpu/e_hypotf.c
+++ b/sysdeps/powerpc/fpu/e_hypotf.c
@@ -46,13 +46,13 @@ static const float two30 = 1.0737418e09;
ieee_float_shape_type gf_u2; \
gf_u1.value = (f1); \
gf_u2.value = (f2); \
- (i1) = gf_u1.word; \
- (i2) = gf_u2.word; \
+ (i1) = gf_u1.word & 0x7fffffff; \
+ (i2) = gf_u2.word & 0x7fffffff; \
} while (0)
# define TEST_INF_NAN(x, y) \
do { \
- int32_t hx, hy; \
+ uint32_t hx, hy; \
GET_TWO_FLOAT_WORD(x, y, hx, hy); \
if (hy > hx) { \
uint32_t ht = hx; hx = hy; hy = ht; \