Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CMPeq (0.03 sec)

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

    	if f.constants == nil {
    		f.constants = make(map[int64][]*Value)
    	}
    	vv := f.constants[c]
    	for _, v := range vv {
    		if v.Op == op && v.Type.Compare(t) == types.CMPeq {
    			if setAuxInt && v.AuxInt != c {
    				panic(fmt.Sprintf("cached const %s should have AuxInt of %d", v.LongString(), c))
    			}
    			return v
    		}
    	}
    	var v *Value
    	if setAuxInt {
    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