diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-08 20:15:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-08 20:15:33 +0000 |
commit | b662b064f66f55f8cf32b8e85887b84832528cc5 (patch) | |
tree | c34af4291e9489a77a355d55a601c19cbea7d9cc /llvm/projects/Stacker/lib/compiler | |
parent | 102779e12aaff80792d9dc37dfc161909ffbd10c (diff) | |
download | bcm5719-llvm-b662b064f66f55f8cf32b8e85887b84832528cc5.tar.gz bcm5719-llvm-b662b064f66f55f8cf32b8e85887b84832528cc5.zip |
Add a missing semi colon, which breaks bison 1.5
llvm-svn: 10325
Diffstat (limited to 'llvm/projects/Stacker/lib/compiler')
-rw-r--r-- | llvm/projects/Stacker/lib/compiler/StackerParser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/projects/Stacker/lib/compiler/StackerParser.y b/llvm/projects/Stacker/lib/compiler/StackerParser.y index 3c82a86ea01..cded9645b69 100644 --- a/llvm/projects/Stacker/lib/compiler/StackerParser.y +++ b/llvm/projects/Stacker/lib/compiler/StackerParser.y @@ -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 */ |