aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/math/acosh.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/math/acosh.go')
-rw-r--r--libgo/go/math/acosh.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/libgo/go/math/acosh.go b/libgo/go/math/acosh.go
index 97e84d0..4b3ebf5 100644
--- a/libgo/go/math/acosh.go
+++ b/libgo/go/math/acosh.go
@@ -47,10 +47,7 @@ func Acosh(x float64) float64 {
func libc_acosh(float64) float64
func acosh(x float64) float64 {
- const (
- Ln2 = 6.93147180559945286227e-01 // 0x3FE62E42FEFA39EF
- Large = 1 << 28 // 2**28
- )
+ const Large = 1 << 28 // 2**28
// first case is special case
switch {
case x < 1 || IsNaN(x):