blob: 108d9e696f82431ec10a0476e691b29fbd90f4b9 [file] [log] [blame]
Bryan C. Millsb354f8b2019-03-06 16:31:30 -05001// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package cpu
6
7// We're compiling the cpu package for an unknown (software-abstracted) CPU.
8// Make CacheLinePad an empty struct and hope that the usual struct alignment
9// rules are good enough.
10
11const cacheLineSize = 0
12
13func doinit() {}