summaryrefslogtreecommitdiff
path: root/test/escape4.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd/gc: fix escape analysis bugRuss Cox2012-09-241-0/+18
| | | | | | | | | Was not handling &x.y[0] and &x.y.z correctly where y is an array or struct-valued field (not a pointer). R=ken2 CC=golang-dev http://codereview.appspot.com/6551059
* test: expand run.go's errorcheck, make clear which bugs runRuss Cox2012-09-231-1/+1
| | | | | | | | | | | | | | | | Today, if run.go doesn't understand a test header line it just ignores the test, making it too easy to write or edit tests that are not actually being run. - expand errorcheck to accept flags, so that bounds.go and escape*.go can run. - create a whitelist of skippable tests in run.go; skipping others is an error. - mark all skipped tests at top of file. Update issue 4139. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6549054
* cmd/gc: must not inline panic, recoverRuss Cox2012-03-051-7/+13
| | | | | | R=lvd, gri CC=golang-dev http://codereview.appspot.com/5731061
* gc: fix escape analysis + inlining + closure bugRuss Cox2012-02-231-0/+33
R=ken2 CC=golang-dev, lvd http://codereview.appspot.com/5693056