]> Cypherpunks repositories - gostls13.git/commit
compiler changes for *chan -> chan; *map -> map; new(T) -> new(*T)
authorRuss Cox <rsc@golang.org>
Fri, 19 Dec 2008 11:05:54 +0000 (03:05 -0800)
committerRuss Cox <rsc@golang.org>
Fri, 19 Dec 2008 11:05:54 +0000 (03:05 -0800)
commitdc7b2e98d2dabd8b862476f0ca25c7c4e1423f38
tree8fa94ae610b0442953d43d35d193a251b6f149d0
parent08ca30bbfad04d3ca1bf7ae75c291b91ecb00aef
compiler changes for *chan -> chan; *map -> map; new(T) -> new(*T)
mainly a syntactic change: the compiler representations don't change
(chan and map are now hidden pointers like string).

R=ken
OCL=21578
CL=21582
src/cmd/gc/go.y
src/cmd/gc/subr.c
src/cmd/gc/sys.go
src/cmd/gc/sysimport.c
src/cmd/gc/walk.c