mirror of
https://github.com/golang/go
synced 2024-11-06 01:46:12 -07:00
5d081792b6
to avoid unintentionally clobber R9/R10. Thanks Lucio for the suggestion. PS: yes, this could be considered a big change (but not an API change), but as it turns out even temporarily changes R9/R10 in user code is unsafe and leads to very hard to diagnose problems later, better to disable using R9/R10 when the user first uses it. See CL 6300043 and CL 6305100 for two problems caused by misusing R9/R10. R=golang-dev, khr, rsc CC=golang-dev https://golang.org/cl/9840043
15 lines
691 B
Plaintext
15 lines
691 B
Plaintext
This file collects notes about what has changed since Go 1.1
|
|
and should be mentioned in the Go 1.2 release notes.
|
|
During the Go 1.2 release process it will be necessary to convert
|
|
it to HTML, similar to go1.1.html, but for now it is a text file,
|
|
to make the process of keeping it up-to-date more lightweight.
|
|
|
|
Please keep the descriptions to a single line, starting with the
|
|
package or cmd/xxx directory name, and ending in a CL number.
|
|
Please keep the list sorted (as in sort.Strings of the lines).
|
|
|
|
cmd/5a: removed support for R9/R10 (use m/g instead) (CL 9840043).
|
|
|
|
fmt: indexed access to arguments in Printf etc. (CL 9680043).
|
|
io: Copy prioritizes WriterTo over ReaderFrom (CL 9462044).
|