Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IMake (0.06 sec)

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

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (IMake _typ (StructMake1 val))
    	// result: (IMake _typ val)
    	for {
    		_typ := v_0
    		if v_1.Op != OpStructMake1 {
    			break
    		}
    		val := v_1.Args[0]
    		v.reset(OpIMake)
    		v.AddArg2(_typ, val)
    		return true
    	}
    	// match: (IMake _typ (ArrayMake1 val))
    	// result: (IMake _typ val)
    	for {
    		_typ := v_0
    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