16 lines
308 B
Go
Raw Permalink Normal View History

2019-04-20 23:53:34 +00:00
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2020-03-25 19:15:46 +00:00
// +build !386,!amd64,!amd64p32,!arm64
2019-04-20 23:53:34 +00:00
package cpu
func init() {
2020-03-25 19:15:46 +00:00
if err := readHWCAP(); err != nil {
return
2019-04-20 23:53:34 +00:00
}
doinit()
Initialized = true
2019-04-20 23:53:34 +00:00
}