forked from OSchip/llvm-project
Add a missing semi colon, which breaks bison 1.5
llvm-svn: 10325
This commit is contained in:
parent
102779e12a
commit
b662b064f6
|
|
@ -95,7 +95,7 @@ ColonDef : COLON IDENTIFIER WordList SEMI { $$ = SCI->handle_definition( $2, $3
|
||||||
|
|
||||||
/* A WordList is just a sequence of words */
|
/* A WordList is just a sequence of words */
|
||||||
WordList : WordList Word { $$ = SCI->handle_word_list_end( $1, $2 ); }
|
WordList : WordList Word { $$ = SCI->handle_word_list_end( $1, $2 ); }
|
||||||
| /* empty */ { $$ = SCI->handle_word_list_start() } ;
|
| /* empty */ { $$ = SCI->handle_word_list_start(); } ;
|
||||||
|
|
||||||
/* A few "words" have a funky syntax */
|
/* A few "words" have a funky syntax */
|
||||||
/* FIXME: The body of compound words can currently only be function calls */
|
/* FIXME: The body of compound words can currently only be function calls */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue