Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isNamedRegParam (0.11 sec)

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

    			return v.ID, cloRegStore
    		}
    	}
    	// nothing found
    	return ID(-1), cloRegStore
    }
    
    // isNamedRegParam returns true if the param corresponding to "p"
    // is a named, non-blank input parameter assigned to one or more
    // registers.
    func isNamedRegParam(p abi.ABIParamAssignment) bool {
    	if p.Name == nil {
    		return false
    	}
    	n := p.Name
    	if n.Sym() == nil || n.Sym().IsBlank() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top