8 lines
212 B
Go
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)
|
|
}
|