aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/typecheck/iexport.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2021-04-26 22:08:06 -0700
committerMatthew Dempsky <mdempsky@google.com>2021-04-27 05:44:56 +0000
commitcb34026a95f0637a0f9eadb5e1d7aa301635f943 (patch)
tree2650aca9b7ea2389e0c49ea3f8abdb2bda0001e5 /src/cmd/compile/internal/typecheck/iexport.go
parentc249491572db67acd226210dbcfb4f349614a632 (diff)
downloadgo-cb34026a95f0637a0f9eadb5e1d7aa301635f943.tar.gz
go-cb34026a95f0637a0f9eadb5e1d7aa301635f943.zip
cmd/compile: tighten exportWriter.qualifiedIdent signature
It always takes an *ir.Name and would panic given anything else anyway, so tighten the signature to match. Change-Id: I44fec5c5cc6d7f0b9c59eb91c9f9633137485360 Reviewed-on: https://go-review.googlesource.com/c/go/+/314009 Trust: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Go Bot <gobot@golang.org>
Diffstat (limited to 'src/cmd/compile/internal/typecheck/iexport.go')
-rw-r--r--src/cmd/compile/internal/typecheck/iexport.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/compile/internal/typecheck/iexport.go b/src/cmd/compile/internal/typecheck/iexport.go
index 5955b3d358..ad9eaab07a 100644
--- a/src/cmd/compile/internal/typecheck/iexport.go
+++ b/src/cmd/compile/internal/typecheck/iexport.go
@@ -603,9 +603,9 @@ func (w *exportWriter) pkg(pkg *types.Pkg) {
w.string(pkg.Path)
}
-func (w *exportWriter) qualifiedIdent(n ir.Node) {
+func (w *exportWriter) qualifiedIdent(n *ir.Name) {
// Ensure any referenced declarations are written out too.
- w.p.pushDecl(n.Name())
+ w.p.pushDecl(n)
s := n.Sym()
w.string(s.Name)