diff options
Diffstat (limited to 'src/pkg/bignum/arith.go')
-rw-r--r-- | src/pkg/bignum/arith.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/bignum/arith.go b/src/pkg/bignum/arith.go index a84a1139e..068416729 100644 --- a/src/pkg/bignum/arith.go +++ b/src/pkg/bignum/arith.go @@ -25,7 +25,7 @@ func Mul128(x, y uint64) (z1, z0 uint64) { ) if x < y { - x, y = y, x; + x, y = y, x } if x < B2 { |