Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MOVLconst (0.13 sec)

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

    		return true
    	}
    	// match: (ORLconst [c] _)
    	// cond: c==-1
    	// result: (MOVLconst [-1])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if !(c == -1) {
    			break
    		}
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(-1)
    		return true
    	}
    	// match: (ORLconst [c] (MOVLconst [d]))
    	// result: (MOVLconst [c|d])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != Op386MOVLconst {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
Back to top