Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.23.3 to 2.23.4. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.23.3...v2.23.4) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-version: 2.23.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
358 B
ArmAsm
14 lines
358 B
ArmAsm
// Copyright 2025 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.
|
|
|
|
#include "textflag.h"
|
|
|
|
// func get_cpucfg(reg uint32) uint32
|
|
TEXT ·get_cpucfg(SB), NOSPLIT|NOFRAME, $0
|
|
MOVW reg+0(FP), R5
|
|
// CPUCFG R5, R4 = 0x00006ca4
|
|
WORD $0x00006ca4
|
|
MOVW R4, ret+8(FP)
|
|
RET
|