aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/gc/syntax.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2020-04-23 11:37:33 -0700
committerMatthew Dempsky <mdempsky@google.com>2020-04-23 22:02:26 +0000
commit080a3ee8b26c8e324d40bcd832e9668ecda9af0b (patch)
treeaab96990e1851a6d6836413769e6894adc95a535 /src/cmd/compile/internal/gc/syntax.go
parenta44d06d3b4d665cee14342df1c81a385f9d2055f (diff)
downloadgo-080a3ee8b26c8e324d40bcd832e9668ecda9af0b.tar.xz
cmd/compile: remove ODDDARG
No longer needed after the last CL. Separate commit because renumbering Ops causes toolstash to complain. Change-Id: I6223a790cc341f8184eccb503f95a1dfc32a81e4 Reviewed-on: https://go-review.googlesource.com/c/go/+/229760 Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/cmd/compile/internal/gc/syntax.go')
-rw-r--r--src/cmd/compile/internal/gc/syntax.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/gc/syntax.go b/src/cmd/compile/internal/gc/syntax.go
index 6d8e023a4b..a9bd723351 100644
--- a/src/cmd/compile/internal/gc/syntax.go
+++ b/src/cmd/compile/internal/gc/syntax.go
@@ -815,7 +815,6 @@ const (
// misc
ODDD // func f(args ...int) or f(l...) or var a = [...]int{0, 1, 2}.
- ODDDARG // func f(args ...int), introduced by escape analysis.
OINLCALL // intermediary representation of an inlined call.
OEFACE // itable and data words of an empty-interface value.
OITAB // itable word of an interface value.