aboutsummaryrefslogtreecommitdiff
path: root/src/internal
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/buildcfg/exp.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/internal/buildcfg/exp.go b/src/internal/buildcfg/exp.go
index fb6b5859e3..f1a1d8632e 100644
--- a/src/internal/buildcfg/exp.go
+++ b/src/internal/buildcfg/exp.go
@@ -78,18 +78,13 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {
// things like .debug_addr (needed for DWARF 5).
dwarf5Supported := (goos != "darwin" && goos != "ios" && goos != "aix")
- // The compiler crashes while compiling some of the Green Tea code.
- // The Green Tea code is pretty normal, so this is likely a compiler
- // bug in the loong64 port.
- greenTeaGCSupported := goarch != "loong64"
-
baseline := goexperiment.Flags{
RegabiWrappers: regabiSupported,
RegabiArgs: regabiSupported,
Dwarf5: dwarf5Supported,
RandomizedHeapBase64: true,
SizeSpecializedMalloc: true,
- GreenTeaGC: greenTeaGCSupported,
+ GreenTeaGC: true,
}
// Start with the statically enabled set of experiments.