Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	v_0 := v.Args[0]
    	// match: (LessThanU (FlagConstant [fc]))
    	// result: (MOVDconst [b2i(fc.ult())])
    	for {
    		if v_0.Op != OpARM64FlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_0.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(b2i(fc.ult()))
    		return true
    	}
    	// match: (LessThanU (InvertFlags x))
    	// result: (GreaterThanU x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top