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 | 1b9ce476036a679155cb52633f4d1b1eb4682ae5 (patch) | |
tree | 4d3755e28cb4b520ff09c2e28242901e0a0ea268 /projects/Stacker | |
parent | b5da7465b7809b33bb8b5011ecc3c0c0e39a6537 (diff) | |
download | external_llvm-1b9ce476036a679155cb52633f4d1b1eb4682ae5.zip external_llvm-1b9ce476036a679155cb52633f4d1b1eb4682ae5.tar.gz external_llvm-1b9ce476036a679155cb52633f4d1b1eb4682ae5.tar.bz2 |
Add a missing semi colon, which breaks bison 1.5
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/Stacker')
-rw-r--r-- | projects/Stacker/lib/compiler/StackerParser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/Stacker/lib/compiler/StackerParser.y b/projects/Stacker/lib/compiler/StackerParser.y index 3c82a86..cded964 100644 --- a/projects/Stacker/lib/compiler/StackerParser.y +++ b/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 */ |