aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/gc/main.go
diff options
context:
space:
mode:
authorJeremy Faller <jeremy@golang.org>2020-07-28 13:49:13 -0400
committerJeremy Faller <jeremy@golang.org>2020-07-31 13:55:19 +0000
commit128f4e51f2d60c984f9bcb68ac141eff6e47875e (patch)
treefbb2043ab20ef2a2f5fb6bacf12e3bad3e81e086 /src/cmd/compile/internal/gc/main.go
parent6ac9914383bc88d014cbc681dae758372e6ca823 (diff)
downloadgo-128f4e51f2d60c984f9bcb68ac141eff6e47875e.tar.gz
go-128f4e51f2d60c984f9bcb68ac141eff6e47875e.zip
[dev.link] ensure package path is set when TEXT symbols are created
We're reworking pclntab generation in the linker, and with that we're moving FuncID generation in to the compiler. Determining the FuncID is done by a lookup on the package.function name; therefore, we need the package whenever we make the TEXT symbols. Change-Id: I805445ffbf2f895f06ce3a91fb09126d012bf86e Reviewed-on: https://go-review.googlesource.com/c/go/+/245318 Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'src/cmd/compile/internal/gc/main.go')
-rw-r--r--src/cmd/compile/internal/gc/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/gc/main.go b/src/cmd/compile/internal/gc/main.go
index bb28ef01a1..4417e70616 100644
--- a/src/cmd/compile/internal/gc/main.go
+++ b/src/cmd/compile/internal/gc/main.go
@@ -285,6 +285,8 @@ func Main(archInit func(*Arch)) {
objabi.Flagparse(usage)
+ Ctxt.Pkgpath = myimportpath
+
for _, f := range strings.Split(spectre, ",") {
f = strings.TrimSpace(f)
switch f {
@@ -789,7 +791,6 @@ func Main(archInit func(*Arch)) {
// Write object data to disk.
timings.Start("be", "dumpobj")
dumpdata()
- Ctxt.Pkgpath = myimportpath
Ctxt.NumberSyms()
dumpobj()
if asmhdr != "" {