Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for check_asmout (0.09 sec)

  1. test/codegen/stack.go

    // s390x:"TEXT\t.*, [$]0-"
    func ArrayInit(i, j int) [4]int {
    	return [4]int{i, 0, j, 0}
    }
    
    // Check that assembly output has matching offset and base register
    // (issue #21064).
    
    func check_asmout(b [2]int) int {
    	runtime.GC() // use some frame
    	// amd64:`.*b\+24\(SP\)`
    	// arm:`.*b\+4\(FP\)`
    	return b[1]
    }
    
    // Check that simple functions get promoted to nosplit, even when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top