forked from golang/go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmd/gc: fix issue with method wrappers not having escape analysis run…
… on them. Escape analysis needs the right curfn value on a dclfunc node, otherwise it will not analyze the function. When generating method value wrappers, we forgot to set the curfn correctly. Fixes golang#5753. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/10383048
- Loading branch information
1 parent
428ea68
commit 7cfa831
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// run | ||
|
||
// Copyright 2013 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
// issue 5753: bad typecheck info causes escape analysis to | ||
// not run on method thunks. | ||
|
||
package main | ||
|
||
type Thing struct{} | ||
|
||
func (t *Thing) broken(s string) []string { | ||
foo := [1]string{s} | ||
return foo[:] | ||
} | ||
|
||
func main() { | ||
t := &Thing{} | ||
|
||
f := t.broken | ||
s := f("foo") | ||
_ = f("bar") | ||
if s[0] != "foo" { | ||
panic(`s[0] != "foo"`) | ||
} | ||
|
||
} |