]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: substitute "". prefix with package in more import locations
authorKeith Randall <khr@golang.org>
Mon, 18 Oct 2021 19:19:07 +0000 (12:19 -0700)
committerKeith Randall <khr@golang.org>
Tue, 19 Oct 2021 22:47:35 +0000 (22:47 +0000)
commit9fa85518ff84420af644b1dd82ff311a39cd99c1
tree6378c659def6885234779425c2df47aa55aa52a2
parent1b24c9e42e527b93a39b6a6b16c20672dd2d9a03
cmd/compile: substitute "". prefix with package in more import locations

The "" stand-in for the current package needs to be substituted
in more places when importing, because of generics.

""..dict.conv4["".MyString]

when imported in main and then exported, this becomes

a..dict.conv4["".MyString]

and then the linker makes that into

a..dict.conv4[main.MyString]

Which isn't correct. We need to replace on import not just
function names, but also globals, which this CL does.

Change-Id: Ia04a23b5ffd60aeeaba72c807f69261105670f8e
Reviewed-on: https://go-review.googlesource.com/c/go/+/356570
Trust: Keith Randall <khr@golang.org>
Trust: Dan Scales <danscales@google.com>
Run-TryBot: Keith Randall <khr@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Dan Scales <danscales@google.com>
src/cmd/compile/internal/typecheck/iimport.go