Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for I64Eq (0.04 sec)

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

    		if !(x != y) {
    			break
    		}
    		v.reset(OpWasmI64Const)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (I64Eq (I64Const [x]) y)
    	// cond: y.Op != OpWasmI64Const
    	// result: (I64Eq y (I64Const [x]))
    	for {
    		if v_0.Op != OpWasmI64Const {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		y := v_1
    		if !(y.Op != OpWasmI64Const) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
Back to top