Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LDEBR (0.02 sec)

  1. test/codegen/math.go

    	// s390x:"LNDFR\t",-"MOVD\t"     (no integer load/store)
    	// ppc64x:"FNABS\t"
    	sink64[1] = -math.Abs(y)
    }
    
    // Check that it's using integer registers
    func abs32(x float32) float32 {
    	// s390x:"LPDFR",-"LDEBR",-"LEDBR"     (no float64 conversion)
    	return float32(math.Abs(float64(x)))
    }
    
    // Check that it's using integer registers
    func copysign(a, b, c float64) {
    	// amd64:"BTRQ\t[$]63","ANDQ","ORQ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top