Add a missing semi colon, which breaks bison 1.5

llvm-svn: 10325
This commit is contained in:
Chris Lattner 2003-12-08 20:15:33 +00:00
parent 102779e12a
commit b662b064f6
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ ColonDef : COLON IDENTIFIER WordList SEMI { $$ = SCI->handle_definition( $2, $3
/* A WordList is just a sequence of words */
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 */
/* FIXME: The body of compound words can currently only be function calls */