aboutsummaryrefslogtreecommitdiff
path: root/test/noinit.go
diff options
context:
space:
mode:
authorCuong Manh Le <cuong.manhle.vn@gmail.com>2023-02-10 02:13:05 +0700
committerGopher Robot <gobot@golang.org>2023-02-09 19:49:12 +0000
commitb7736cbceb46d00fb1c8435e5c512635896985b6 (patch)
tree6e4b874ef221eaf1a209687c059a0764963e6273 /test/noinit.go
parent8ffcd3da93c9f408afaebd06ae8a21f8f770a037 (diff)
downloadgo-b7736cbceb46d00fb1c8435e5c512635896985b6.tar.gz
go-b7736cbceb46d00fb1c8435e5c512635896985b6.zip
cmd/compile: disable inline static init optimization
There are a plenty of regression in 1.20 with this optimization. This CL disable inline static init, so it's safer to backport to 1.20 branch. The optimization will be enabled again during 1.21 cycle. Updates #58293 Updates #58339 For #58293 Change-Id: If5916008597b46146b4dc7108c6b389d53f35e95 Reviewed-on: https://go-review.googlesource.com/c/go/+/467015 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com> Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Diffstat (limited to 'test/noinit.go')
-rw-r--r--test/noinit.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/noinit.go b/test/noinit.go
index ed8e572e51..505467cf8f 100644
--- a/test/noinit.go
+++ b/test/noinit.go
@@ -1,4 +1,4 @@
-// run
+// run -gcflags=-d=inlstaticinit=1
//go:build !gcflags_noopt
// Copyright 2010 The Go Authors. All rights reserved.