Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for TopFrame (0.14 sec)

  1. src/cmd/internal/obj/link.go

    func (s *LSym) TextAttrString() string {
    	attr := s.Attribute.String()
    	if s.Func().FuncFlag&abi.FuncFlagTopFrame != 0 {
    		if attr != "" {
    			attr += "|"
    		}
    		attr += "TOPFRAME"
    	}
    	return attr
    }
    
    func (s *LSym) String() string {
    	return s.Name
    }
    
    // The compiler needs *LSym to be assignable to cmd/compile/internal/ssa.Sym.
    func (*LSym) CanBeAnSSASym() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top