[llvm-commits] CVS: llvm/projects/Stacker/lib/compiler/StackerParser.y
Chris Lattner
lattner at cs.uiuc.edu
Mon Dec 8 14:16:02 PST 2003
Changes in directory llvm/projects/Stacker/lib/compiler:
StackerParser.y updated: 1.1 -> 1.2
---
Log message:
Add a missing semi colon, which breaks bison 1.5
---
Diffs of the changes: (+1 -1)
Index: llvm/projects/Stacker/lib/compiler/StackerParser.y
diff -u llvm/projects/Stacker/lib/compiler/StackerParser.y:1.1 llvm/projects/Stacker/lib/compiler/StackerParser.y:1.2
--- llvm/projects/Stacker/lib/compiler/StackerParser.y:1.1 Sun Nov 23 11:52:55 2003
+++ llvm/projects/Stacker/lib/compiler/StackerParser.y Mon Dec 8 14:15:33 2003
@@ -95,7 +95,7 @@
/* 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 */
More information about the llvm-commits
mailing list