]> Cypherpunks repositories - gostls13.git/commit
cmd/internal/gc: use big.Int to represent Mpint bits
authorRobert Griesemer <gri@golang.org>
Wed, 18 Mar 2015 21:10:22 +0000 (14:10 -0700)
committerRobert Griesemer <gri@golang.org>
Fri, 20 Mar 2015 17:19:07 +0000 (17:19 +0000)
commit888767fcc4649b4477241f116f2f66d8546ccacd
treecc425b05babcdd5cba9de4b47dbf04604c87c55c
parent653426f08f2e34ddcc73f7603d23e5f640b6b1ff
cmd/internal/gc: use big.Int to represent Mpint bits

- renamed (existing) Mpint -> Mpfix
- defined (new) Mpint using big.Int
- modified funcs mpxxx operating on new Mpint
- renamed funcs mpxxx -> _mpxxx if still needed with Mpfix
- left old (possibly unused) code in place for comparison

Passes all.bash.

Change-Id: I1fc7bba7dc4b6386f2f0950d745cec17c1e67615

cmd/internal/gc: renamed Mpint -> Mpfix

Change-Id: Ia06aeae1081ef29d5ad9b711fb57e4c5579ce29b
Reviewed-on: https://go-review.googlesource.com/7830
Reviewed-by: Russ Cox <rsc@golang.org>
src/cmd/internal/gc/go.go
src/cmd/internal/gc/lex.go
src/cmd/internal/gc/mparith1.go
src/cmd/internal/gc/mparith2.go
src/cmd/internal/gc/mparith3.go