diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2002-07-05 12:31:59 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2002-07-05 12:31:59 +0000 |
commit | 17f44f02e70c4157bb90ddc62e2bf665151d5995 (patch) | |
tree | f1ccd1ce66c14ac07449f1f12f0fe479bb98fd21 | |
parent | c6f553d129c88f17810c2aba03b372bf6bc7f218 (diff) | |
download | gcc-17f44f02e70c4157bb90ddc62e2bf665151d5995.zip gcc-17f44f02e70c4157bb90ddc62e2bf665151d5995.tar.gz gcc-17f44f02e70c4157bb90ddc62e2bf665151d5995.tar.bz2 |
c-parse.in (extdef): Append ';'.
* c-parse.in (extdef): Append ';'.
(old_style_parm_decls): Append ';'.
From-SVN: r55258
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/c-parse.in | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 648247a..2b412cd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-07-05 Nathan Sidwell <nathan@codesourcery.com> + + * c-parse.in (extdef): Append ';'. + (old_style_parm_decls): Append ';'. + 2002-07-04 Daniel Jacobowitz <drow@mvista.com> * configure.in: Correct typos: gcc_cv_as_gdwarf2_debug_flag to diff --git a/gcc/c-parse.in b/gcc/c-parse.in index 2a94832..47b5a3a 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -386,6 +386,7 @@ extdefs: extdef: extdef_1 { parsing_iso_function_signature = false; } /* Reset after any external definition. */ + ; extdef_1: fndef @@ -797,6 +798,7 @@ old_style_parm_decls: { parsing_iso_function_signature = false; /* Reset after decls. */ } + ; old_style_parm_decls_1: /* empty */ |