Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CmpToZeroU_ex1 (0.14 sec)

  1. test/codegen/comparisons.go

    func UintGeqOne(a uint8, b uint16, c uint32, d uint64) int {
    	// arm64: `(CBN?ZW)`, `(CBN?Z[^W])`, -`(CMPW|CMP|BLO|BHS)`
    	if a >= 1 || b >= 1 || c >= 1 || d >= 1 {
    		return 1
    	}
    	return 0
    }
    
    func CmpToZeroU_ex1(a uint8, b uint16, c uint32, d uint64) int {
    	// wasm:"I64Eqz"-"I64LtU"
    	if 0 < a {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LtU"
    	if 0 < b {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LtU"
    	if 0 < c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top