Files
wazero-wazero/internal/engine/wazevo/entrypoint_other.go
T
2025-11-14 00:21:33 -05:00

16 lines
420 B
Go

//go:build !(arm64 || amd64)
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, framePointer uintptr) {
panic(runtime.GOARCH)
}