summaryrefslogtreecommitdiff
path: root/sysdeps/libm-ieee754
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-04-05 00:42:01 +0000
committerUlrich Drepper <drepper@redhat.com>1997-04-05 00:42:01 +0000
commit72b6c2b1c7a61ebdfd4071f67275620d7db09b75 (patch)
tree7d202ed75a1ff81e42b77e7eb0e505978fc7d31d /sysdeps/libm-ieee754
parentffc30dcbea19aff3af9fa8f6d9bea6de7c61cc4a (diff)
Fix typo.
Diffstat (limited to 'sysdeps/libm-ieee754')
-rw-r--r--sysdeps/libm-ieee754/s_asinhl.c2
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..6eb434c44b 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)