From: Matthew Dempsky Date: Tue, 9 Aug 2022 07:29:45 +0000 (-0700) Subject: internal/buildcfg: enable unified IR by default X-Git-Tag: go1.20rc1~1533 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=833367e98af838a2511ee7e4e19dc8f1da7b8ed7;p=gostls13.git 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 Reviewed-by: David Chase TryBot-Result: Gopher Robot Reviewed-by: Cuong Manh Le --- 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.