aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/syntax/nodes.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2020-11-25 12:44:11 -0500
committerRuss Cox <rsc@golang.org>2020-11-25 13:15:41 -0500
commit5c2e14872c70a8ad9fd27033a2451531c6c00c0e (patch)
tree394a86bb4ae567d3e1a19ba67d51049ad504bfa0 /src/cmd/compile/internal/syntax/nodes.go
parent2c25cd5ba7772a97ee63787e3986b6ec231e8c3d (diff)
parent41f3af9d04362a56c1af186af134c704a03fa97b (diff)
downloadgo-5c2e14872c70a8ad9fd27033a2451531c6c00c0e.tar.gz
go-5c2e14872c70a8ad9fd27033a2451531c6c00c0e.zip
[dev.typeparams] merge dev.regabi 41f3af9d04 into dev.typeparams
This brings in the new ir.Node interface, replacing *gc.Node. Change-Id: I82c623655eee08d77d623babf22ec4d91f9aa3cd
Diffstat (limited to 'src/cmd/compile/internal/syntax/nodes.go')
-rw-r--r--src/cmd/compile/internal/syntax/nodes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/syntax/nodes.go b/src/cmd/compile/internal/syntax/nodes.go
index e5b69628ec..306e695a33 100644
--- a/src/cmd/compile/internal/syntax/nodes.go
+++ b/src/cmd/compile/internal/syntax/nodes.go
@@ -116,7 +116,7 @@ func (*decl) aDecl() {}
// All declarations belonging to the same group point to the same Group node.
type Group struct {
- dummy int // not empty so we are guaranteed different Group instances
+ _ int // not empty so we are guaranteed different Group instances
}
// ----------------------------------------------------------------------------