Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CmpMem3 (0.11 sec)

  1. test/codegen/comparisons.go

    // possible
    
    func CmpMem1(p int, q *int) bool {
    	// amd64:`CMPQ\t\(.*\), [A-Z]`
    	return p < *q
    }
    
    func CmpMem2(p *int, q int) bool {
    	// amd64:`CMPQ\t\(.*\), [A-Z]`
    	return *p < q
    }
    
    func CmpMem3(p *int) bool {
    	// amd64:`CMPQ\t\(.*\), [$]7`
    	return *p < 7
    }
    
    func CmpMem4(p *int) bool {
    	// amd64:`CMPQ\t\(.*\), [$]7`
    	return 7 < *p
    }
    
    func CmpMem5(p **int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top