Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ConstEmptyString (0.14 sec)

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

    	return f.constVal(OpConstInterface, t, constInterfaceMagic, false)
    }
    func (f *Func) ConstNil(t *types.Type) *Value {
    	return f.constVal(OpConstNil, t, constNilMagic, false)
    }
    func (f *Func) ConstEmptyString(t *types.Type) *Value {
    	v := f.constVal(OpConstString, t, constEmptyStringMagic, false)
    	v.Aux = StringToAux("")
    	return v
    }
    func (f *Func) ConstOffPtrSP(t *types.Type, c int64, sp *Value) *Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top