mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
[dev.cc] cmd/asm: accept #define A /* nothing */
Was rejected but should be legal. Change-Id: I0189e3bef6b67c6ba390c75a48a8d9d8f39b7636 Reviewed-on: https://go-review.googlesource.com/5286 Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
parent
d7eb51e70e
commit
f60fb5c5ad
2 changed files with 6 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ func (in *Input) macroDefinition(name string) ([]string, []Token) {
|
|||
prevCol := in.Stack.Col()
|
||||
tok := in.Stack.Next()
|
||||
if tok == '\n' || tok == scanner.EOF {
|
||||
in.Error("no definition for macro:", name)
|
||||
return nil, nil // No definition for macro
|
||||
}
|
||||
var args []string
|
||||
// The C preprocessor treats
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue