commit 9e23f2b2ce2dd3150ee15a80e72347d89ff5eba4 [browse]
Author: Andrew Gerrand
Date: 2010-08-12 15:51:11 +10:00

release.2010-08-11

R=rsc
CC=golang-dev
https://golang.org/cl/1954044

commit 1d77ff5b6b2ec5679cd847f0e091a827fd1716b7 [browse]
Author: Russ Cox
Date: 2010-08-11 22:27:47 -07:00

6g, 8g: handle slice by sub-word-sized index (uint8, int8, uint16, int16)

R=ken2
CC=golang-dev
https://golang.org/cl/1960042

commit 879b5a02a942dc8a59f51b0fcb48e53cad1b71c4 [browse]
Author: Russ Cox
Date: 2010-08-11 22:22:36 -07:00

A+C: Mikio Hara (individual CLA)

R=adg
CC=golang-dev
https://golang.org/cl/1971042

commit 26dde76cee3508fc666b15a94d8201e09d2fb805 [browse]
Author: Russ Cox
Date: 2010-08-11 22:17:20 -07:00

gopack: handle long lines in export data
Also, if the header is bad, exit with a non-zero status.

Other calls to Brdline in the tree, by category:

Reading symbol name from object file:
./cmd/5l/obj.c:486: 		name = Brdline(f, '\0');
./cmd/6l/obj.c:535: 		name = Brdline(f, '\0');
./cmd/8l/obj.c:564: 		name = Brdline(f, '\0');
./libmach/sym.c:292: 		cp = Brdline(bp, '\0');

Reading archive header line (fixed, short):
./cmd/gc/lex.c:287: 	if((a = Brdline(b, '\n')) == nil)
./cmd/gc/lex.c:303: 	if((p = Brdline(b, '\n')) == nil)

Reading object file header line (fixed, short):
./cmd/ld/lib.c:421: 	line = Brdline(f, '\n');

Reading undefined symbol list (unused code):
./cmd/ld/lib.c:773: 	while((l = Brdline(b, '\n')) != nil){

Implementing Brdstr:
./libbio/brdstr.c:36: 		p = Brdline(bp, delim);

The symbol names ones will cause a problem loudly if they
fail: they'll error out with symbol name too long.  This means
that you can't define an enormous struct without giving the
type a name and then stick it in an interface, because the
type's symbol name will be too long for the object file.
Since this will be a loud failure instead of a silent one,
I'm willing to wait until it comes up in practice.

R=r
CC=golang-dev
https://golang.org/cl/1982041

commit 14e0df34fd0feab41e377964d55a23e8b4e05f4e [browse]
Author: Russ Cox
Date: 2010-08-11 21:58:29 -07:00

5g, 8g: dead code (already removed from 6g)

R=ken2
CC=golang-dev
https://golang.org/cl/1983041

clone the repository to get more history