Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for funcAddress (0.17 sec)

  1. src/cmd/asm/internal/asm/operand_test.go

    		{"s390x", s390xOperandTests},
    	} {
    		t.Run(sub.arch, func(t *testing.T) {
    			parser := newParser(sub.arch)
    			for _, test := range sub.tests {
    				parser.start(lex.Tokenize(test.input))
    				name, _, ok := parser.funcAddress()
    
    				isFuncSym := strings.HasSuffix(test.input, "(SB)") &&
    					// Ignore static symbols.
    					!strings.Contains(test.input, "<>")
    
    				wantName := ""
    				if isFuncSym {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
Back to top