Black Lives Matter. Support the Equal Justice Initiative.

Source file src/runtime/stubs_mips64x.go

Documentation: runtime

     1  // Copyright 2019 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 mips64 || mips64le
     6  // +build mips64 mips64le
     7  
     8  package runtime
     9  
    10  import "unsafe"
    11  
    12  // Called from assembly only; declared for go vet.
    13  func load_g()
    14  func save_g()
    15  
    16  //go:noescape
    17  func asmcgocall_no_g(fn, arg unsafe.Pointer)
    18  

View as plain text