aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/sys_wasm.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/sys_wasm.go')
-rw-r--r--src/runtime/sys_wasm.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runtime/sys_wasm.go b/src/runtime/sys_wasm.go
index 057ed4ccd9..e6e7f471ee 100644
--- a/src/runtime/sys_wasm.go
+++ b/src/runtime/sys_wasm.go
@@ -5,6 +5,7 @@
package runtime
import (
+ "internal/goarch"
"runtime/internal/sys"
"unsafe"
)
@@ -30,7 +31,7 @@ func wasmExit(code int32)
// and then stopped before the first instruction in fn.
func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
sp := buf.sp
- sp -= sys.PtrSize
+ sp -= goarch.PtrSize
*(*uintptr)(unsafe.Pointer(sp)) = buf.pc
buf.sp = sp
buf.pc = uintptr(fn)