Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CMOVQPS (0.13 sec)

  1. test/codegen/condmove.go

    	// arm64:"CSEL\tEQ"
    	// ppc64x:"ISEL\t[$]2"
    	// wasm:"Select"
    	return a
    }
    
    func cmovfloatne(x, y float64) int {
    	a := 128
    	if x != y {
    		a = 256
    	}
    	// amd64:"CMOVQNE","CMOVQPS"
    	// arm64:"CSEL\tNE"
    	// ppc64x:"ISEL\t[$]2"
    	// wasm:"Select"
    	return a
    }
    
    //go:noinline
    func frexp(f float64) (frac float64, exp int) {
    	return 1.0, 4
    }
    
    //go:noinline
    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