summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/amd64/closure.c
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+123
2011-09-13Imported Upstream version 60Ondřej Surý1-123/+0
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-6/+6
2010-01-25in C and asm, replace pkg·name with ·nameRuss Cox1-1/+1
(eliminate assumption of package global name space, make code easier to move between packages). R=r CC=golang-dev http://codereview.appspot.com/194072
2009-10-15rename sys functions to runtime,Russ Cox1-1/+1
because they are in package runtime. another step to enforcing package boundaries. R=r DELTA=732 (114 added, 93 deleted, 525 changed) OCL=35811 CL=35824
2009-07-28make every func literal expression allocate,Russ Cox1-32/+34
so that == on func means that the functions originated in the same execution of a func literal or definition. before, there was an inconsistency: func() {x++} != func() {x++} but func() {} == func() {} this CL makes the second case != too, just like make(map[int]int) != make(map[int]int) R=r DELTA=202 (71 added, 62 deleted, 69 changed) OCL=32393 CL=32398
2009-06-09mv src/lib to src/pkgRob Pike1-0/+121
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102