Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    				abi = theabi
    			}
    		}
    	}
    	p.get('>')
    	return isStatic, abi
    }
    
    // funcAddress parses an external function address. This is a
    // constrained form of the operand syntax that's always SB-based,
    // non-static, and has at most a simple integer offset:
    //
    //	[$|*]sym[<abi>][+Int](SB)
    func (p *Parser) funcAddress() (string, obj.ABI, bool) {
    	switch p.peek() {
    	case '$', '*':
    		// Skip prefix.
    		p.next()
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 04 18:16:59 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top