blob: 384787ea3062384428ab4c7a51a664f5b42efc1f [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
Russ Cox9a761022021-02-19 22:57:36 -05005//go:build wasm
Ian Lance Taylor584f3b12019-03-07 17:25:44 -08006
Bryan C. Millsb354f8b2019-03-06 16:31:30 -05007package cpu
8
9// We're compiling the cpu package for an unknown (software-abstracted) CPU.
10// Make CacheLinePad an empty struct and hope that the usual struct alignment
11// rules are good enough.
12
13const cacheLineSize = 0
Polina Osadcha0cf76232020-07-09 09:47:37 +030014
15func initOptions() {}
16
17func archInit() {}