Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for asmKindForType (0.25 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    						badf("unknown variable %s", name)
    					}
    					continue
    				}
    				asmCheckVar(badf, fn, line, m[0], off, v, archDef)
    			}
    		}
    		flushRet()
    	}
    	return nil, nil
    }
    
    func asmKindForType(t types.Type, size int) asmKind {
    	switch t := t.Underlying().(type) {
    	case *types.Basic:
    		switch t.Kind() {
    		case types.String:
    			return asmString
    		case types.Complex64, types.Complex128:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top