]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/export_debug_regabiargs_off_test.go
[dev.cmdgo] all: merge master (912f075) into dev.cmdgo
[gostls13.git] / src / runtime / export_debug_regabiargs_off_test.go
1 // Copyright 2021 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
5 //go:build amd64 && linux && !goexperiment.regabiargs
6 // +build amd64,linux,!goexperiment.regabiargs
7
8 package runtime
9
10 import "internal/abi"
11
12 func storeRegArgs(dst *sigcontext, src *abi.RegArgs) {
13 }
14
15 func loadRegArgs(dst *abi.RegArgs, src *sigcontext) {
16 }