Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CmpToOneU_ex1 (0.11 sec)

  1. test/codegen/comparisons.go

    	if b <= 0 {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LeU"
    	if c <= 0 {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LeU"
    	if d <= 0 {
    		return 1
    	}
    	return 0
    }
    
    func CmpToOneU_ex1(a uint8, b uint16, c uint32, d uint64) int {
    	// wasm:"I64Eqz"-"I64LtU"
    	if a < 1 {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LtU"
    	if b < 1 {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LtU"
    	if c < 1 {
    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