diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-21 21:35:17 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-21 21:35:17 +0000 |
commit | ba059ac08df083b778d3285145cf7158756e612b (patch) | |
tree | 65860333fa5eace063eaed77c267e32c72a10073 /gcc/c-lex.c | |
parent | 198fb69b92678aa6bb489a9138a382140dfcc3aa (diff) | |
download | gcc-ba059ac08df083b778d3285145cf7158756e612b.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55629 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 3d8ecff0885..4a7f05ae746 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -853,10 +853,10 @@ interpret_integer (token, flags) if (itk_u < itk_unsigned_long) itk_u = itk_unsigned_long; itk = itk_u; - warning ("this decimal constant is unsigned only in ISO C89"); + warning ("this decimal constant is unsigned only in ISO C90"); } else if (warn_traditional) - warning ("this decimal constant would be unsigned in ISO C89"); + warning ("this decimal constant would be unsigned in ISO C90"); } } } |