Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RecordAutoType (0.12 sec)

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

    func (fi *FuncInfo) AddSpill(s RegSpill) {
    	fi.spills = append(fi.spills, s)
    }
    
    // Record the type symbol for an auto variable so that the linker
    // an emit DWARF type information for the type.
    func (fi *FuncInfo) RecordAutoType(gotype *LSym) {
    	if fi.Autot == nil {
    		fi.Autot = make(map[*LSym]struct{})
    	}
    	fi.Autot[gotype] = struct{}{}
    }
    
    //go:generate stringer -type ABI
    
    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