summaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ssa/opGen.go
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2016-04-28 15:04:10 -0700
committerKeith Randall <khr@golang.org>2016-04-28 23:32:24 +0000
commit6ed79fbd1abf018b018088c6a1699cd34ee6d56c (patch)
treecd63dccc56a988e14891b99c9366ec1818bc879b /src/cmd/compile/internal/ssa/opGen.go
parent3cb090f93c4b0d9ebdf111efb0c5383d8ca97bd2 (diff)
downloadgo-git-6ed79fbd1abf018b018088c6a1699cd34ee6d56c.tar.gz
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>
Diffstat (limited to 'src/cmd/compile/internal/ssa/opGen.go')
-rw-r--r--src/cmd/compile/internal/ssa/opGen.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cmd/compile/internal/ssa/opGen.go b/src/cmd/compile/internal/ssa/opGen.go
index 9ab9be769c..2795d97333 100644
--- a/src/cmd/compile/internal/ssa/opGen.go
+++ b/src/cmd/compile/internal/ssa/opGen.go
@@ -47,7 +47,6 @@ const (
BlockRetJmp
BlockExit
BlockFirst
- BlockDead
)
var blockString = [...]string{
@@ -88,7 +87,6 @@ var blockString = [...]string{
BlockRetJmp: "RetJmp",
BlockExit: "Exit",
BlockFirst: "First",
- BlockDead: "Dead",
}
func (k BlockKind) String() string { return blockString[k] }