Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CompareString3 (0.14 sec)

  1. test/codegen/comparisons.go

    	// amd64:`CMPL\t\(.*\), [$]`
    	// arm64:`MOVWU\t\(.*\), [R]`,`CMPW\t.*, [R]`
    	// ppc64le:`MOVWZ\t\(.*\), [R]`,`CMPW\t.*, [R]`
    	// s390x:`MOVWBR\t\(.*\), [R]`,`CMPW\t.*, [$]`
    	return s == "xxxx"
    }
    
    func CompareString3(s string) bool {
    	// amd64:`CMPQ\t\(.*\), [A-Z]`
    	// arm64:-`CMPW\t`
    	// ppc64x:-`CMPW\t`
    	// s390x:-`CMPW\t`
    	return s == "xxxxxxxx"
    }
    
    // Check that arrays compare use 2/4/8 byte compares
    
    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