Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cmovfloatmove (0.1 sec)

  1. test/codegen/condmove.go

    		a = 256
    	}
    	// amd64:"CMOVQEQ"
    	// arm64:"CSEL\tEQ"
    	// ppc64x:"ISEL\t[$]2"
    	// wasm:"Select"
    	return a
    }
    
    // Floating point CMOVs are not supported by amd64/arm64/ppc64x
    func cmovfloatmove(x, y int) float64 {
    	a := 1.0
    	if x <= y {
    		a = 2.0
    	}
    	// amd64:-"CMOV"
    	// arm64:-"CSEL"
    	// ppc64x:-"ISEL"
    	// wasm:-"Select"
    	return a
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:57:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top