]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: bring vendored copy of math/big up-to-date
authorRobert Griesemer <gri@golang.org>
Tue, 2 Feb 2016 18:14:36 +0000 (10:14 -0800)
committerRobert Griesemer <gri@golang.org>
Mon, 22 Feb 2016 20:50:00 +0000 (20:50 +0000)
commitf39cca94af880253be22cdbb30d0a7d385f6b516
tree1b36861183e36a78d57a9e3bd9a6a7c41d79d429
parent028247d2cd82243b44b00c5da477f971112e5ff9
cmd/compile: bring vendored copy of math/big up-to-date

These files were not added to the repo. They contain conversion
routines and corresponding tests not used by the compiler and
thus are technically not needed.

However, future changes to math/big (and corresponding updates
of this vendored version) may require these files to exist.
Add them to avoid unnecessary confusion.

Change-Id: Ie390fb54f499463b2bba2fdc084967539afbeeb3
Reviewed-on: https://go-review.googlesource.com/19730
Reviewed-by: Alan Donovan <adonovan@google.com>
src/cmd/compile/internal/big/example_rat_test.go [new file with mode: 0644]
src/cmd/compile/internal/big/floatmarsh.go [new file with mode: 0644]
src/cmd/compile/internal/big/floatmarsh_test.go [new file with mode: 0644]
src/cmd/compile/internal/big/intmarsh.go [new file with mode: 0644]
src/cmd/compile/internal/big/intmarsh_test.go [new file with mode: 0644]
src/cmd/compile/internal/big/ratmarsh.go [new file with mode: 0644]
src/cmd/compile/internal/big/ratmarsh_test.go [new file with mode: 0644]