Files
wazero/internal/platform/platform_amd64.go
2024-01-25 09:19:37 -08:00

8 lines
212 B
Go

package platform
// init verifies that the current CPU supports the required AMD64 instructions
func init() {
// Ensure SSE4.1 is supported.
archRequirementsVerified = CpuFeatures.Has(CpuFeatureAmd64SSE4_1)
}