summaryrefslogtreecommitdiffstats
path: root/newlib/libm/math/ef_hypot.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/math/ef_hypot.c')
-rw-r--r--newlib/libm/math/ef_hypot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/math/ef_hypot.c b/newlib/libm/math/ef_hypot.c
index b78b968ef..9368eb41c 100644
--- a/newlib/libm/math/ef_hypot.c
+++ b/newlib/libm/math/ef_hypot.c
@@ -50,7 +50,7 @@
if(FLT_UWORD_IS_ZERO(hb)) {
return a;
} else if(FLT_UWORD_IS_SUBNORMAL(hb)) {
- SET_FLOAT_WORD(t1,0x3f000000L); /* t1=2^126 */
+ SET_FLOAT_WORD(t1,0x7e800000L); /* t1=2^126 */
b *= t1;
a *= t1;
k -= 126;