Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for interfaceConv (0.21 sec)

  1. test/codegen/switch.go

    	// arm64:`CALL\truntime.typeAssert`,`LDAR`,`MOVWU\t16\(R0\)`,`MOVD\t\(R.*\)\(R.*\)`
    	if _, ok := x.(I); ok {
    		return 3
    	}
    	return 5
    }
    
    func interfaceConv(x IJ) I {
    	// amd64:`CALL\truntime.typeAssert`,`MOVL\t16\(AX\)`,`MOVQ\t8\(.*\)(.*\*1)`
    	// arm64:`CALL\truntime.typeAssert`,`LDAR`,`MOVWU\t16\(R0\)`,`MOVD\t\(R.*\)\(R.*\)`
    	return x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:39:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top