Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for auxToString (0.1 sec)

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

    	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)
    		v0 := b.NewValue0(v.Pos, OpConstNil, typ.BytePtr)
    		v1 := b.NewValue0(v.Pos, OpConst32, typ.Int)
    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