mirror of
https://github.com/golang/sys.git
synced 2026-02-08 11:46:04 +03:00
Updates golang/go#46229 Change-Id: Ibee284c742532dec798f4a5ecfe38b429825d7aa Reviewed-on: https://go-review.googlesource.com/c/sys/+/399334 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Russ Cox <rsc@golang.org>
14 lines
260 B
Go
14 lines
260 B
Go
// Copyright 2022 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.
|
|
|
|
//go:build loong64
|
|
// +build loong64
|
|
|
|
package cpu
|
|
|
|
const cacheLineSize = 64
|
|
|
|
func initOptions() {
|
|
}
|