diff options
Diffstat (limited to 'src/runtime/export_debug_regabiargs_off_test.go')
| -rw-r--r-- | src/runtime/export_debug_regabiargs_off_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/runtime/export_debug_regabiargs_off_test.go b/src/runtime/export_debug_regabiargs_off_test.go new file mode 100644 index 0000000000..fce37ab4d1 --- /dev/null +++ b/src/runtime/export_debug_regabiargs_off_test.go @@ -0,0 +1,17 @@ +// Copyright 2021 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. + +//go:build amd64 && linux && !goexperiment.regabiargs +// +build amd64,linux +// +build !goexperiment.regabiargs + +package runtime + +import "internal/abi" + +func storeRegArgs(dst *sigcontext, src *abi.RegArgs) { +} + +func loadRegArgs(dst *abi.RegArgs, src *sigcontext) { +} |
