aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Weinberg <zack@gcc.gnu.org>2004-03-31 14:45:58 +0000
committerZack Weinberg <zack@gcc.gnu.org>2004-03-31 14:45:58 +0000
commit5fece1829e883e71ebad241cb72c01be943d698e (patch)
tree4ed64998ca89c7f3a389546681eb4bc06d5149f3
parent31023ac57f6edc4e19304a357301e2c998bf41eb (diff)
downloadgcc-5fece1829e883e71ebad241cb72c01be943d698e.zip
gcc-5fece1829e883e71ebad241cb72c01be943d698e.tar.gz
gcc-5fece1829e883e71ebad241cb72c01be943d698e.tar.bz2
gengtype-yacc.y (option, stringseq): Add missing terminating semicolon.
* gengtype-yacc.y (option, stringseq): Add missing terminating semicolon. From-SVN: r80250
-rw-r--r--gcc/ChangeLog11
-rw-r--r--gcc/gengtype-yacc.y2
2 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 462feb7..76de386 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-31 Zack Weinberg <zack@codesourcery.com>
+
+ * gengtype-yacc.y (option, stringseq): Add missing
+ terminating semicolon.
+
2004-03-30 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (tls_gd_32, tls_gd_64,
@@ -22,9 +27,9 @@
2004-03-29 Fariborz Jahanian <fjahanian@apple.com>
- * fold-const.c (fold): Reassociate multiply expression
- with an adjacent non-multiply expression to use
- architecture's multiply-add instruction.
+ * fold-const.c (fold): Reassociate multiply expression
+ with an adjacent non-multiply expression to use
+ architecture's multiply-add instruction.
2004-03-30 Zack Weinberg <zack@codesourcery.com>
diff --git a/gcc/gengtype-yacc.y b/gcc/gengtype-yacc.y
index 18b65f1..f6a9bac 100644
--- a/gcc/gengtype-yacc.y
+++ b/gcc/gengtype-yacc.y
@@ -274,6 +274,7 @@ option: ID
{ $$ = create_option ($1, (void *)$3); }
| type_option '(' type ')'
{ $$ = create_option ($1, adjust_field_type ($3, NULL)); }
+ ;
optionseq: option
{
@@ -302,4 +303,5 @@ stringseq: STRING
free ((void *)$2);
$$ = s;
}
+ ;
%%