1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00
lazygit/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go

17 lines
360 B
Go
Raw Normal View History

2020-08-25 08:12:16 +10:00
// Copyright 2020 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.
2021-04-01 21:07:21 +11:00
//go:build ppc64 || ppc64le
2020-08-25 08:12:16 +10:00
package cpu
const cacheLineSize = 128
func initOptions() {
options = []option{
{Name: "darn", Feature: &PPC64.HasDARN},
{Name: "scv", Feature: &PPC64.HasSCV},
}
}