1
0
mirror of https://github.com/golang/go synced 2024-11-23 22:30:05 -07:00

cmd/compile/internal/gc: remove unused state.placeholder field

gc.state.placeholder was added in 5a6e511c61 but never used.

Change-Id: I5a621507279d5bb1f3991b7a412d9a63039c464e
Reviewed-on: https://go-review.googlesource.com/38755
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Dave Cheney 2017-03-29 10:55:46 +11:00
parent 54af18708b
commit 9f232c1786

View File

@ -256,9 +256,6 @@ type state struct {
// list of PPARAMOUT (return) variables.
returns []*Node
// A dummy value used during phi construction.
placeholder *ssa.Value
cgoUnsafeArgs bool
hasdefer bool // whether the function contains a defer statement
}