aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/internal/sys
diff options
context:
space:
mode:
authorRichard Musiol <mail@richard-musiol.de>2018-06-12 23:22:03 +0200
committerBrad Fitzpatrick <bradfitz@golang.org>2018-06-12 22:09:45 +0000
commitbe36bd996eb120741ed866396e607fcd5e0b702a (patch)
treec5bd7bc8d32112f9604d723c8b2bbdfe6afeeed3 /src/runtime/internal/sys
parentbd83774593bca66cc899d5180c77680bc907fab8 (diff)
downloadgo-be36bd996eb120741ed866396e607fcd5e0b702a.tar.xz
runtime/internal/sys: rename Wasm to WASM
This commit changes sys.Wasm to sys.WASM, as requested on https://groups.google.com/forum/#!topic/golang-dev/VquDxlhjPkg Change-Id: I30a208c34576a8bb49b9beb524203d71df8fdf1c Reviewed-on: https://go-review.googlesource.com/118395 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime/internal/sys')
-rw-r--r--src/runtime/internal/sys/arch.go2
-rw-r--r--src/runtime/internal/sys/arch_wasm.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/internal/sys/arch.go b/src/runtime/internal/sys/arch.go
index d9debaeef7..75beb7872f 100644
--- a/src/runtime/internal/sys/arch.go
+++ b/src/runtime/internal/sys/arch.go
@@ -15,5 +15,5 @@ const (
MIPS64
PPC64
S390X
- Wasm
+ WASM
)
diff --git a/src/runtime/internal/sys/arch_wasm.go b/src/runtime/internal/sys/arch_wasm.go
index 54fcd1e92e..5463f934d6 100644
--- a/src/runtime/internal/sys/arch_wasm.go
+++ b/src/runtime/internal/sys/arch_wasm.go
@@ -5,7 +5,7 @@
package sys
const (
- ArchFamily = Wasm
+ ArchFamily = WASM
BigEndian = false
CacheLineSize = 64
DefaultPhysPageSize = 65536