Add a missing semi colon, which breaks bison 1.5
authorChris Lattner <sabre@nondot.org>
Mon, 8 Dec 2003 20:15:33 +0000 (20:15 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 8 Dec 2003 20:15:33 +0000 (20:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10325 91177308-0d34-0410-b5e6-96231b3b80d8

projects/Stacker/lib/compiler/StackerParser.y

index 3c82a86ea013f7db70b16ee370e668f0941f3083..cded9645b692749df818163a069ace8e81ed9c72 100644 (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 */