Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Fn0 (0.07 sec)

  1. src/internal/abi/testdata/x.go

    // license that can be found in the LICENSE file.
    
    package x
    
    import "internal/abi"
    
    func Fn0() // defined in assembly
    
    func Fn1() {}
    
    var FnExpr func()
    
    func test() {
    	_ = abi.FuncPCABI0(Fn0)           // line 16, no error
    	_ = abi.FuncPCABIInternal(Fn0)    // line 17, error
    	_ = abi.FuncPCABI0(Fn1)           // line 18, error
    	_ = abi.FuncPCABIInternal(Fn1)    // line 19, no error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 23 21:05:39 UTC 2021
    - 606 bytes
    - Viewed (0)
  2. src/internal/abi/testdata/x.s

    // 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.
    
    TEXT	ยทFn0(SB), 0, $0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 23 21:05:39 UTC 2021
    - 189 bytes
    - Viewed (0)
Back to top