fix build error on loongarch64

cpu/cpu_loong64.go:10:7: CacheLineSize redeclared in this block
	cpu/cpu.go:20:5: other declaration of CacheLineSize
cpu/cpu.go:15:30: undefined array length CacheLinePadSize or missing type constraint
cpu/cpu.go:20:29: undefined: CacheLinePadSize
cpu/cpu.go:123:2: undefined: doinit
This commit is contained in:
Xiaotian Wu 2023-05-30 09:59:17 +08:00 committed by Xiaotian Wu
parent c785bd3a1e
commit 99c83a6df5

View file

@ -7,7 +7,7 @@
package cpu
const CacheLineSize = 64
const CacheLinePadSize = 64
func initOptions() {
func doinit() {
}