Files
wazero/internal/engine/wazevo/entrypoint_others.go
2023-09-13 10:57:57 +09:00

16 lines
395 B
Go

//go:build !arm64
package wazevo
import (
"runtime"
)
func entrypoint(preambleExecutable, functionExecutable *byte, executionContextPtr uintptr, moduleContextPtr *byte, paramResultStackPtr *uint64, goAllocatedStackSlicePtr uintptr) {
panic(runtime.GOARCH)
}
func afterGoFunctionCallEntrypoint(executable *byte, executionContextPtr uintptr, stackPointer uintptr) {
panic(runtime.GOARCH)
}