Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for possibleConst (0.32 sec)

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

    				if possibleConst(arg) && possibleConst(val) {
    					if _, exist := t.defUse[arg]; !exist {
    						t.defUse[arg] = make([]*Value, 0, arg.Uses)
    					}
    					t.defUse[arg] = append(t.defUse[arg], val)
    				}
    			}
    		}
    		for _, ctl := range block.ControlValues() {
    			// for control values that can become constants, find their use blocks
    			if possibleConst(ctl) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top