2021-01-01 03:23:30 +08:00
|
|
|
// Copyright 2020 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.
|
|
|
|
|
|
|
|
// +build !386
|
|
|
|
// +build !amd64
|
|
|
|
// +build !amd64p32
|
|
|
|
// +build !arm
|
|
|
|
// +build !arm64
|
2021-01-05 04:43:25 +08:00
|
|
|
// +build !mips
|
|
|
|
// +build !mipsle
|
2021-01-01 03:23:30 +08:00
|
|
|
// +build !mips64
|
|
|
|
// +build !mips64le
|
|
|
|
// +build !ppc
|
|
|
|
// +build !ppc64
|
|
|
|
// +build !ppc64le
|
|
|
|
// +build !riscv64
|
|
|
|
// +build !s390x
|
2021-01-05 04:43:25 +08:00
|
|
|
// +build !wasm
|
2021-01-01 03:23:30 +08:00
|
|
|
|
|
|
|
package cpu
|
|
|
|
|
|
|
|
func doinit() {
|
|
|
|
}
|