diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-08 07:50:46 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-08 07:50:46 +0000 |
commit | 817adc773e5e933a3b7c9ceb6eca2b579e80701c (patch) | |
tree | e0517960c65eaaeff8087f0e25e3b82b95e80f87 /gcc/treelang | |
parent | 58965ec14985d971204f0e1b82c021baee6fe6bf (diff) | |
download | gcc-817adc773e5e933a3b7c9ceb6eca2b579e80701c.tar.gz |
* dwarf2.h, unwind-dw2-fde.h, unwind-pe.h, unwind.h:
Add multiple-include guard.
cp:
* parser.c (cp_parser_save_member_function_body): Mark the
definition static.
treelang:
* parse.y (yyerror): Mark the definition static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75536 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/treelang')
-rw-r--r-- | gcc/treelang/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/treelang/parse.y | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/treelang/ChangeLog b/gcc/treelang/ChangeLog index d017977a38b..fa087fa7152 100644 --- a/gcc/treelang/ChangeLog +++ b/gcc/treelang/ChangeLog @@ -1,3 +1,7 @@ +2004-01-07 Zack Weinberg <zack@codesourcery.com> + + * parse.y (yyerror): Mark the definition static. + 2003-12-04 James A. Morrison <ja2morri@uwaterloo.ca> * lex.l: Add \t as a whitespace character. diff --git a/gcc/treelang/parse.y b/gcc/treelang/parse.y index f0f721d5545..e7c98386aab 100644 --- a/gcc/treelang/parse.y +++ b/gcc/treelang/parse.y @@ -783,7 +783,7 @@ print_token (FILE * file, unsigned int type ATTRIBUTE_UNUSED, YYSTYPE value) } /* Output a message ERROR_MESSAGE from the parser. */ -void +static void yyerror (const char *error_message) { struct prod_token_parm_item *tok; |