Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stringName (0.09 sec)

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

    	b := v.Block
    	config := b.Func.Config
    	fe := b.Func.fe
    	typ := &b.Func.Config.Types
    	// match: (ConstString {str})
    	// cond: config.PtrSize == 4 && str == ""
    	// result: (StringMake (ConstNil) (Const32 <typ.Int> [0]))
    	for {
    		str := auxToString(v.Aux)
    		if !(config.PtrSize == 4 && str == "") {
    			break
    		}
    		v.reset(OpStringMake)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
Back to top