mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-04 19:17:37 +08:00
11 lines
164 B
Go
11 lines
164 B
Go
//go:build amd64
|
|
|
|
package t544
|
|
|
|
func cpuid(op uint32) (eax, ebx, ecx, edx uint32)
|
|
|
|
var canusesse2 = func() bool {
|
|
_, _, _, d := cpuid(1)
|
|
return d&(1<<26) > 0
|
|
}()
|