1
0
mirror of https://github.com/golang/go synced 2024-11-19 10:34:46 -07:00

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>
This commit is contained in:
Richard Musiol 2018-06-12 23:22:03 +02:00 committed by Brad Fitzpatrick
parent bd83774593
commit be36bd996e
3 changed files with 3 additions and 3 deletions

View File

@ -15,5 +15,5 @@ const (
MIPS64 MIPS64
PPC64 PPC64
S390X S390X
Wasm WASM
) )

View File

@ -5,7 +5,7 @@
package sys package sys
const ( const (
ArchFamily = Wasm ArchFamily = WASM
BigEndian = false BigEndian = false
CacheLineSize = 64 CacheLineSize = 64
DefaultPhysPageSize = 65536 DefaultPhysPageSize = 65536

View File

@ -940,7 +940,7 @@ func newstack() {
throw("missing stack in newstack") throw("missing stack in newstack")
} }
sp := gp.sched.sp sp := gp.sched.sp
if sys.ArchFamily == sys.AMD64 || sys.ArchFamily == sys.I386 || sys.ArchFamily == sys.Wasm { if sys.ArchFamily == sys.AMD64 || sys.ArchFamily == sys.I386 || sys.ArchFamily == sys.WASM {
// The call to morestack cost a word. // The call to morestack cost a word.
sp -= sys.PtrSize sp -= sys.PtrSize
} }