mirror of
https://github.com/golang/go.git
synced 2026-06-27 03:11:23 +00:00
interrnal/buildcfg: enable SizeSpecializedMalloc by default
For #79286 Change-Id: I0c201e1b68416a8adccc9aae5308657a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/773941 TryBot-Bypass: Michael Matloob <matloob@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Michael Matloob <matloob@google.com>
This commit is contained in:
parent
b7ad0fe092
commit
2a93576965
1 changed files with 8 additions and 7 deletions
|
|
@ -79,13 +79,14 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {
|
|||
dwarf5Supported := (goos != "darwin" && goos != "ios" && goos != "aix")
|
||||
|
||||
baseline := goexperiment.Flags{
|
||||
RegabiWrappers: regabiSupported,
|
||||
RegabiArgs: regabiSupported,
|
||||
Dwarf5: dwarf5Supported,
|
||||
RandomizedHeapBase64: true,
|
||||
GreenTeaGC: true,
|
||||
JSONv2: true,
|
||||
GenericMethods: true,
|
||||
RegabiWrappers: regabiSupported,
|
||||
RegabiArgs: regabiSupported,
|
||||
Dwarf5: dwarf5Supported,
|
||||
RandomizedHeapBase64: true,
|
||||
GreenTeaGC: true,
|
||||
JSONv2: true,
|
||||
GenericMethods: true,
|
||||
SizeSpecializedMalloc: true,
|
||||
}
|
||||
flags := &ExperimentFlags{
|
||||
Flags: baseline,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue