aboutsummaryrefslogtreecommitdiff
path: root/test/linkx_run.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2019-10-03 10:49:28 -0700
committerMatthew Dempsky <mdempsky@google.com>2019-10-03 18:08:32 +0000
commitc33d45a898ab1d966faba33d18acdffefb0fae0d (patch)
tree425b1208dde73aa82fb5e1adf8f9f382a50e46ee /test/linkx_run.go
parent6b85fa80519615ae5fd58154277b47d77e5cf08b (diff)
downloadgo-c33d45a898ab1d966faba33d18acdffefb0fae0d.tar.gz
go-c33d45a898ab1d966faba33d18acdffefb0fae0d.zip
cmd/compile: don't statically copy string-typed variables
During package initialization, the compiler tries to optimize: var A = "foo" var B = A into var A = "foo" var B = "foo" so that we can statically initialize both A and B and skip emitting dynamic initialization code to assign "B = A". However, this isn't safe in the presence of cmd/link's -X flag, which might overwrite an initialized string-typed variable at link time. In particular, if cmd/link changes A's static initialization, it won't know it also needs to change B's static initialization. To address this, this CL disables this optimization for string-typed variables. Fixes #34675. Change-Id: I1c18f3b855f6d7114aeb39f96aaaf1b452b88236 Reviewed-on: https://go-review.googlesource.com/c/go/+/198657 Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'test/linkx_run.go')
-rw-r--r--test/linkx_run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/linkx_run.go b/test/linkx_run.go
index ca9d31612a..f25053bf28 100644
--- a/test/linkx_run.go
+++ b/test/linkx_run.go
@@ -36,7 +36,7 @@ func test(sep string) {
os.Exit(1)
}
- want := "hello\ntrumped\n"
+ want := "hello\nhello\nhello\ntrumped\ntrumped\ntrumped\n"
got := out.String()
if got != want {
fmt.Printf("got %q want %q\n", got, want)