Commit cce4c319 authored by Matthew Dempsky's avatar Matthew Dempsky

cmd/internal/obj: remove unneeded AVARFOO ops

Change-Id: I10e36046ebce8a8741ef019cfe266b9ac9fa322d
Reviewed-on: https://go-review.googlesource.com/38088
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarJosh Bleecher Snyder <josharian@gmail.com>
parent 8ada5222
......@@ -293,9 +293,6 @@ const (
ARET
ATEXT
AUNDEF
AVARDEF
AVARKILL
AVARLIVE
A_ARCHSPECIFIC
)
......
......@@ -492,9 +492,6 @@ var Anames = []string{
"RET",
"TEXT",
"UNDEF",
"VARDEF",
"VARKILL",
"VARLIVE",
}
func Bool2int(b bool) int {
......
......@@ -1699,8 +1699,6 @@ var optab =
{AXGETBV, ynone, Pm, [23]uint8{01, 0xd0}},
{obj.AFUNCDATA, yfuncdata, Px, [23]uint8{0, 0}},
{obj.APCDATA, ypcdata, Px, [23]uint8{0, 0}},
{obj.AVARDEF, nil, 0, [23]uint8{}},
{obj.AVARKILL, nil, 0, [23]uint8{}},
{obj.ADUFFCOPY, yduff, Px, [23]uint8{0xe8}},
{obj.ADUFFZERO, yduff, Px, [23]uint8{0xe8}},
{obj.AEND, nil, 0, [23]uint8{}},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment