aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Anthony Knyszek <mknyszek@google.com>2026-01-23 16:51:40 +0000
committerMichael Knyszek <mknyszek@google.com>2026-01-23 12:12:31 -0800
commitabbfab71c66250d78554767dae1d5ff386fa92e2 (patch)
treeb54727fbb31865f2bd44b93ac4b7c1f7aae5c597
parentf6676f9db90d9822ce2a07656991fb72fff57ab4 (diff)
downloadgo-x-website-abbfab71c66250d78554767dae1d5ff386fa92e2.tar.xz
_content/doc/go1.26: remove release note for sizespecializedmalloc
See CL 738780. Change-Id: Ifcb2ec675d6d4c38de06c7d558fa455c3a6596f2 Reviewed-on: https://go-review.googlesource.com/c/website/+/738781 Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
-rw-r--r--_content/doc/go1.26.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/_content/doc/go1.26.md b/_content/doc/go1.26.md
index c1fb0ae8..413a5e82 100644
--- a/_content/doc/go1.26.md
+++ b/_content/doc/go1.26.md
@@ -132,22 +132,6 @@ performance or behavior, please [file an issue](/issue/new).
The baseline runtime overhead of cgo calls has been reduced by ~30%.
-### Faster memory allocation
-
-<!-- CL 665835 -->
-
-The compiler will now generate calls to size-specialized memory allocation
-routines, reducing the cost of some small (<512 byte) memory allocations by
-up to 30%.
-Improvements vary depending on the workload, but the overall improvement is
-expected to be ~1% in real allocation-heavy programs.
-This causes the binary size to increase by about 300 KB (independent of the
-workload).
-Please [file an issue](/issue/new) if you notice any regressions.
-You may set `GOEXPERIMENT=nosizespecializedmalloc` at build time to disable
-it.
-This opt-out setting is expected to be removed in Go 1.27.
-
### Goroutine leak profiles {#goroutineleak-profiles}
<!-- CL 688335 -->