Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. test/codegen/compare_and_branch.go

    //go:noinline
    func dummy() {}
    
    // Signed 64-bit compare-and-branch.
    func si64(x, y chan int64) {
    	// s390x:"CGRJ\t[$](2|4), R[0-9]+, R[0-9]+, "
    	for <-x < <-y {
    		dummy()
    	}
    
    	// s390x:"CL?GRJ\t[$]8, R[0-9]+, R[0-9]+, "
    	for <-x == <-y {
    		dummy()
    	}
    }
    
    // Signed 64-bit compare-and-branch with 8-bit immediate.
    func si64x8(doNotOptimize int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top