diff options
Diffstat (limited to 'libgo/go/math/pow.go')
-rw-r--r-- | libgo/go/math/pow.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/math/pow.go b/libgo/go/math/pow.go index f0ad84af6b9..06b107401b9 100644 --- a/libgo/go/math/pow.go +++ b/libgo/go/math/pow.go @@ -98,7 +98,7 @@ func Pow(x, y float64) float64 { } // ans = a1 * 2**ae (= 1 for now). - a1 := float64(1) + a1 := 1.0 ae := 0 // ans *= x**yf |