From: Zack Weinberg Date: Wed, 31 Mar 2004 14:45:58 +0000 (+0000) Subject: gengtype-yacc.y (option, stringseq): Add missing terminating semicolon. X-Git-Tag: releases/gcc-4.0.0~9100 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5fece1829e883e71ebad241cb72c01be943d698e;p=thirdparty%2Fgcc.git gengtype-yacc.y (option, stringseq): Add missing terminating semicolon. * gengtype-yacc.y (option, stringseq): Add missing terminating semicolon. From-SVN: r80250 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 462feb758d1b..76de386f549c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-03-31 Zack Weinberg + + * gengtype-yacc.y (option, stringseq): Add missing + terminating semicolon. + 2004-03-30 David Edelsohn * config/rs6000/rs6000.md (tls_gd_32, tls_gd_64, @@ -22,9 +27,9 @@ 2004-03-29 Fariborz Jahanian - * 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 diff --git a/gcc/gengtype-yacc.y b/gcc/gengtype-yacc.y index 18b65f14c5cf..f6a9bac2e2e5 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; } + ; %%