commit | 8052786e51f606ac201e92d288ed8d49069b71f4 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Sun Oct 17 11:41:23 2010 -0400 |
committer | Russ Cox <rsc@golang.org> | Sun Oct 17 11:41:23 2010 -0400 |
tree | fe77bfd6991e66a8e1da0b144b1f19ea18cc05fc | |
parent | 77eb94c0328958dc75dc4045fbca3460ea633dbe [diff] |
5l: stop using R12 as SB Because the SB is only good for 8k and Go programs tend to have much more data than that, SB doesn't save very much. A fmt.Printf-based hello world program has 360 kB text segment. Removing SB makes the text 500 bytes (0.14%) longer. R=ken2, r2, ken3 CC=golang-dev https://golang.org/cl/2487042