Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FuncNameABI (0.1 sec)

  1. src/cmd/compile/internal/ssa/func.go

    func (f *Func) NameABI() string {
    	return FuncNameABI(f.Name, f.ABISelf.Which())
    }
    
    // FuncNameABI returns n followed by a comma and the value of a.
    // This is a separate function to allow a single point encoding
    // of the format, which is used in places where there's not a Func yet.
    func FuncNameABI(n string, a obj.ABI) string {
    	return fmt.Sprintf("%s,%d", n, a)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top