diff options
Diffstat (limited to 'src/cmd/gc/lex.c')
| -rw-r--r-- | src/cmd/gc/lex.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmd/gc/lex.c b/src/cmd/gc/lex.c index a50101c429..c90cbef890 100644 --- a/src/cmd/gc/lex.c +++ b/src/cmd/gc/lex.c @@ -1592,6 +1592,10 @@ go: noescape = 1; goto out; } + if(strcmp(lexbuf, "go:nosplit") == 0) { + nosplit = 1; + goto out; + } out: return c; |
