mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: remove BlockDead state
It is unused, remove the clutter. Change-Id: I51a44326b125ef79241459c463441f76a289cc08 Reviewed-on: https://go-review.googlesource.com/22586 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
3cb090f93c
commit
6ed79fbd1a
4 changed files with 1 additions and 20 deletions
|
|
@ -438,9 +438,8 @@ var genericBlocks = []blockData{
|
|||
{name: "RetJmp"}, // no successors, jumps to b.Aux.(*gc.Sym)
|
||||
{name: "Exit"}, // no successors, control value generates a panic
|
||||
|
||||
// transient block states used for dead code removal
|
||||
// transient block state used for dead code removal
|
||||
{name: "First"}, // 2 successors, always takes the first one (second is dead)
|
||||
{name: "Dead"}, // no successors; determined to be dead but not yet removed
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue