Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for srcConstant (0.22 sec)

  1. src/cmd/compile/internal/typecheck/subr.go

    // If not, return OXXX. In this case, the string return parameter may
    // hold a reason why. In all other cases, it'll be the empty string.
    // srcConstant indicates whether the value of type src is a constant.
    func convertOp(srcConstant bool, src, dst *types.Type) (ir.Op, string) {
    	if src == dst {
    		return ir.OCONVNOP, ""
    	}
    	if src == nil || dst == nil {
    		return ir.OXXX, ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top