You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//go:build amd64 && !appengine && !noasm && gc
|
|
// +build amd64,!appengine,!noasm,gc
|
|
|
|
package cpuinfo
|
|
|
|
// go:noescape
|
|
func x86extensions() (bmi1, bmi2 bool)
|
|
|
|
func init() {
|
|
hasBMI1, hasBMI2 = x86extensions()
|
|
}
|