Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LessThanU (0.28 sec)

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

    	v_0 := v.Args[0]
    	// match: (LessThanU (FlagConstant [fc]))
    	// result: (MOVWconst [b2i32(fc.ult())])
    	for {
    		if v_0.Op != OpARMFlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_0.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(b2i32(fc.ult()))
    		return true
    	}
    	// match: (LessThanU (InvertFlags x))
    	// result: (GreaterThanU x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top