diff options
| author | Matthew Dempsky <mdempsky@google.com> | 2022-08-09 00:29:45 -0700 |
|---|---|---|
| committer | Matthew Dempsky <mdempsky@google.com> | 2022-08-18 22:53:59 +0000 |
| commit | 833367e98af838a2511ee7e4e19dc8f1da7b8ed7 (patch) | |
| tree | 477bea3d09bb1bc8b77044b7f632a0611548c5b7 /src | |
| parent | 0a4a57de4d0764a4291e4d8654e88b44e65d8059 (diff) | |
| download | go-833367e98af838a2511ee7e4e19dc8f1da7b8ed7.tar.xz | |
internal/buildcfg: enable unified IR by default
Unified IR is now at feature parity with the non-unified frontend.
Change-Id: I2a8cd41267a66f5eb1f425b89d18c6d501676e07
Reviewed-on: https://go-review.googlesource.com/c/go/+/422235
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: David Chase <drchase@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/internal/buildcfg/exp.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/internal/buildcfg/exp.go b/src/internal/buildcfg/exp.go index 8c352149c4..a5955d3947 100644 --- a/src/internal/buildcfg/exp.go +++ b/src/internal/buildcfg/exp.go @@ -72,6 +72,7 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) { baseline := goexperiment.Flags{ RegabiWrappers: regabiSupported, RegabiArgs: regabiSupported, + Unified: true, } // Start with the statically enabled set of experiments. |
