aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/mpagealloc_32bit.go
diff options
context:
space:
mode:
authorDavid Chase <drchase@google.com>2022-01-14 12:06:38 -0500
committerDavid Chase <drchase@google.com>2022-01-14 12:06:38 -0500
commitbb93480d009322886df6f5185c988d6d21fdc2c8 (patch)
treee0aedd272a69d97f56c27da8c3bdb98d0515d8b6 /src/runtime/mpagealloc_32bit.go
parentadecd3ffbec722f69dfb5993d25f63aed5305a71 (diff)
parent378766af9ed0f2e28d67c2b50e73db7573656669 (diff)
downloadgo-bb93480d009322886df6f5185c988d6d21fdc2c8.tar.gz
go-bb93480d009322886df6f5185c988d6d21fdc2c8.zip
[dev.boringcrypto.go1.16] all: merge go1.16.13 into dev.boringcrypto.go1.16
Change-Id: I1233ad2811a546b008c75242ddd560fd2d121327
Diffstat (limited to 'src/runtime/mpagealloc_32bit.go')
-rw-r--r--src/runtime/mpagealloc_32bit.go8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/runtime/mpagealloc_32bit.go b/src/runtime/mpagealloc_32bit.go
index 331dadade9..951504fc38 100644
--- a/src/runtime/mpagealloc_32bit.go
+++ b/src/runtime/mpagealloc_32bit.go
@@ -2,19 +2,13 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build 386 arm mips mipsle wasm ios,arm64
+// +build 386 arm mips mipsle wasm
// wasm is a treated as a 32-bit architecture for the purposes of the page
// allocator, even though it has 64-bit pointers. This is because any wasm
// pointer always has its top 32 bits as zero, so the effective heap address
// space is only 2^32 bytes in size (see heapAddrBits).
-// ios/arm64 is treated as a 32-bit architecture for the purposes of the
-// page allocator, even though it has 64-bit pointers and a 33-bit address
-// space (see heapAddrBits). The 33 bit address space cannot be rounded up
-// to 64 bits because there are too many summary levels to fit in just 33
-// bits.
-
package runtime
import "unsafe"