gengtype-yacc.y (option, stringseq): Add missing terminating semicolon.
authorZack Weinberg <zack@gcc.gnu.org>
Wed, 31 Mar 2004 14:45:58 +0000 (14:45 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Wed, 31 Mar 2004 14:45:58 +0000 (14:45 +0000)
* gengtype-yacc.y (option, stringseq): Add missing
terminating semicolon.

From-SVN: r80250

gcc/ChangeLog
gcc/gengtype-yacc.y

index 462feb758d1b5b0cf9321f6aa6657542284e6c98..76de386f549ce0a190c74ad40ab4be6a928b38be 100644 (file)
@@ -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>
 
index 18b65f14c5cf7c6e3602db8b1268a541f50577a4..f6a9bac2e2e5bd2751cc0d5d6739ce80e74b41a7 100644 (file)
@@ -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;
             }
+          ;
 %%