diff options
author | Gabriel Dos Reis <gdr@nerim.net> | 2002-07-21 21:35:17 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2002-07-21 21:35:17 +0000 |
commit | 565083069d08d22e1c8882948fba1e90dcde1388 (patch) | |
tree | 65860333fa5eace063eaed77c267e32c72a10073 /gcc/cpplex.c | |
parent | e2f62855b2ad7615a8f731a8a90b64217e2110c3 (diff) | |
download | gcc-565083069d08d22e1c8882948fba1e90dcde1388.zip gcc-565083069d08d22e1c8882948fba1e90dcde1388.tar.gz gcc-565083069d08d22e1c8882948fba1e90dcde1388.tar.bz2 |
c-decl.c (build_array_declarator): Say 'ISO C90', not 'ISO C89'.
2002-07-21 Gabriel Dos Reis <gdr@nerim.net>
* c-decl.c (build_array_declarator): Say 'ISO C90', not 'ISO C89'.
(grokdeclarator): Likewise.
* c-format.c (C_STD_NAME): Likewise.
* c-lex.c (interpret_integer): Likewise.
* c-typeck.c (build_array_ref): Likewise.
* cpplex.c (_cpp_lex_direct): Likewise.
* toplev.c (documented_lang_options): Likewise.
testsuite/
2002-07-21 Gabriel Dos Reis <gdr@nerim.net>
* gcc.dg/c90-arraydecl-1.c: Change C89 too C90.
From-SVN: r55629
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r-- | gcc/cpplex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 44fbe2c..7942c96 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -1100,7 +1100,7 @@ _cpp_lex_direct (pfile) && ! buffer->warned_cplusplus_comments) { cpp_error (pfile, DL_PEDWARN, - "C++ style comments are not allowed in ISO C89"); + "C++ style comments are not allowed in ISO C90"); cpp_error (pfile, DL_PEDWARN, "(this will be reported only once per input file)"); buffer->warned_cplusplus_comments = 1; |