Bryan C. Mills | b354f8b | 2019-03-06 16:31:30 -0500 | [diff] [blame] | 1 | // 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 Cox | 9a76102 | 2021-02-19 22:57:36 -0500 | [diff] [blame] | 5 | //go:build wasm |
Ian Lance Taylor | 584f3b1 | 2019-03-07 17:25:44 -0800 | [diff] [blame] | 6 | |
Bryan C. Mills | b354f8b | 2019-03-06 16:31:30 -0500 | [diff] [blame] | 7 | package 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 | |
| 13 | const cacheLineSize = 0 |
Polina Osadcha | 0cf7623 | 2020-07-09 09:47:37 +0300 | [diff] [blame] | 14 | |
| 15 | func initOptions() {} |
| 16 | |
| 17 | func archInit() {} |