Black Lives Matter. Support the Equal Justice Initiative.

Source file src/runtime/export_debug_regabiargs_off_test.go

Documentation: runtime

     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  }
    17  

View as plain text