Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for macroName (0.18 sec)

  1. src/cmd/asm/internal/lex/input.go

    	case "line":
    		in.line()
    	case "undef":
    		in.undef()
    	default:
    		in.Error("unexpected token after '#':", in.Stack.Text())
    	}
    	return true
    }
    
    // macroName returns the name for the macro being referenced.
    func (in *Input) macroName() string {
    	// We use the Stack's input method; no macro processing at this stage.
    	tok := in.Stack.Next()
    	if tok != scanner.Ident {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/lex.go

    	ROT                                   // @> Used on ARM for shift type 4, rotate right.
    	Include                               // included file started here
    	BuildComment                          // //go:build or +build comment
    	macroName                             // name of macro that should not be expanded
    )
    
    // IsRegisterShift reports whether the token is one of the ARM register shift operators.
    func IsRegisterShift(r ScanToken) bool {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 4.1K bytes
    - Viewed (0)
Back to top