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:
Michael Matloob 2026-05-04 16:42:36 -04:00
parent b7ad0fe092
commit 2a93576965

View file

@ -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,