summaryrefslogtreecommitdiff
path: root/projects/Stacker/lib/compiler/StackerParser.y
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-08 20:15:33 +0000
committerChris Lattner <sabre@nondot.org>2003-12-08 20:15:33 +0000
commit1b9ce476036a679155cb52633f4d1b1eb4682ae5 (patch)
tree4d3755e28cb4b520ff09c2e28242901e0a0ea268 /projects/Stacker/lib/compiler/StackerParser.y
parentb5da7465b7809b33bb8b5011ecc3c0c0e39a6537 (diff)
downloadllvm-1b9ce476036a679155cb52633f4d1b1eb4682ae5.tar.gz
llvm-1b9ce476036a679155cb52633f4d1b1eb4682ae5.tar.bz2
llvm-1b9ce476036a679155cb52633f4d1b1eb4682ae5.tar.xz
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/lib/compiler/StackerParser.y')
-rw-r--r--projects/Stacker/lib/compiler/StackerParser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/Stacker/lib/compiler/StackerParser.y b/projects/Stacker/lib/compiler/StackerParser.y
index 3c82a86ea0..cded9645b6 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 */