diff options
Diffstat (limited to 'sysdeps/libm-ieee754/s_asinhl.c')
-rw-r--r-- | sysdeps/libm-ieee754/s_asinhl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/libm-ieee754/s_asinhl.c b/sysdeps/libm-ieee754/s_asinhl.c index 865bc31052..d5b307753e 100644 --- a/sysdeps/libm-ieee754/s_asinhl.c +++ b/sysdeps/libm-ieee754/s_asinhl.c @@ -65,6 +65,6 @@ huge= 1.000000000000000000e+4900L; t = x*x; w =__log1pl(fabsl(x)+t/(one+__ieee754_sqrtl(one+t))); } - if(hx>0x7fff) return w; else return -w; + if(hx>0x8000) return -w; else return w; } weak_alias (__asinhl, asinhl) |