Index: e_hypotf.c =================================================================== RCS file: /cvs/glibc/libc/sysdeps/ieee754/flt-32/e_hypotf.c,v retrieving revision 1.2 diff -u -r1.2 e_hypotf.c --- e_hypotf.c 30 Aug 2005 22:47:14 -0000 1.2 +++ e_hypotf.c 31 Aug 2005 17:02:02 -0000 @@ -47,7 +47,7 @@ return w; } /* scale a and b by 2**-60 */ - ha -= 0x5d800000; hb -= 0x5d800000; k += 60; + ha -= 0x1e000000; hb -= 0x1e000000; k += 60; SET_FLOAT_WORD(a,ha); SET_FLOAT_WORD(b,hb); } @@ -59,8 +59,8 @@ a *= t1; k -= 126; } else { /* scale a and b by 2^60 */ - ha += 0x5d800000; /* a *= 2^60 */ - hb += 0x5d800000; /* b *= 2^60 */ + ha += 0x1e000000; /* a *= 2^60 */ + hb += 0x1e000000; /* b *= 2^60 */ k -= 60; SET_FLOAT_WORD(a,ha); SET_FLOAT_WORD(b,hb);