Files
wazero/internal/platform/platform_arm64.go
Edoardo Vacchi 28b0084e62 compiler(amd64): return false on SSE4 unsupported CPUs (#1121)
Signed-off-by: Edoardo Vacchi <evacchi@users.noreply.github.com>
Co-authored-by: Takeshi Yoneda <t.y.mathetake@gmail.com>
2023-02-14 08:33:18 +09:00

8 lines
182 B
Go

package platform
// init verifies that the current CPU supports the required ARM64 features
func init() {
// No further checks currently needed.
archRequirementsVerified = true
}