Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ABIxxx (0.12 sec)

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

    	switch prefix {
    	case 0:
    		a.Type = obj.TYPE_MEM
    	case '$':
    		a.Type = obj.TYPE_ADDR
    	case '*':
    		a.Type = obj.TYPE_INDIR
    	}
    
    	// Parse optional <> (indicates a static symbol) or
    	// <ABIxxx> (selecting text symbol with specific ABI).
    	doIssueError := true
    	isStatic, abi := p.symRefAttrs(name, doIssueError)
    
    	if p.peek() == '+' || p.peek() == '-' {
    		a.Offset = int64(p.expr())
    	}
    	if isStatic {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
Back to top