-5e8a91bf239c253d7b5c84bd2c1dd3ecb18980e9
+b332ba2f0d0302eeb01a228c217928296cec56f6
The first line of this file holds the git revision number of the last
merge done from the gofrontend repository.
}
func TestMapAlloc(t *testing.T) {
- if runtime.Compiler == "gccgo" {
- t.Skip("skipping on gccgo until we have escape analysis")
- }
m := ValueOf(make(map[int]int, 10))
k := ValueOf(5)
v := ValueOf(7)
}
func TestChanAlloc(t *testing.T) {
- if runtime.Compiler == "gccgo" {
- t.Skip("skipping on gccgo until we have escape analysis")
- }
// Note: for a chan int, the return Value must be allocated, so we
// use a chan *int instead.
c := ValueOf(make(chan *int, 1))