summaryrefslogtreecommitdiff
path: root/src/pkg/bignum/arith.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/bignum/arith.go')
-rw-r--r--src/pkg/bignum/arith.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/bignum/arith.go b/src/pkg/bignum/arith.go
index f60b66828..a84a1139e 100644
--- a/src/pkg/bignum/arith.go
+++ b/src/pkg/bignum/arith.go
@@ -18,7 +18,7 @@ func Mul128(x, y uint64) (z1, z0 uint64) {
// and return the product as 2 words.
const (
- W = uint(unsafe.Sizeof(x)) * 8;
+ W = uint(unsafe.Sizeof(x))*8;
W2 = W/2;
B2 = 1<<W2;
M2 = B2-1;
@@ -80,7 +80,7 @@ func MulAdd128(x, y, c uint64) (z1, z0 uint64) {
// and return the product as 2 words.
const (
- W = uint(unsafe.Sizeof(x)) * 8;
+ W = uint(unsafe.Sizeof(x))*8;
W2 = W/2;
B2 = 1<<W2;
M2 = B2-1;