summaryrefslogtreecommitdiff
path: root/gcc/c-lex.c
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@nerim.net>2002-07-21 21:35:17 +0000
committerGabriel Dos Reis <gdr@gcc.gnu.org>2002-07-21 21:35:17 +0000
commit565083069d08d22e1c8882948fba1e90dcde1388 (patch)
tree65860333fa5eace063eaed77c267e32c72a10073 /gcc/c-lex.c
parente2f62855b2ad7615a8f731a8a90b64217e2110c3 (diff)
downloadgcc-565083069d08d22e1c8882948fba1e90dcde1388.tar.gz
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/c-lex.c')
-rw-r--r--gcc/c-lex.c4
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");
}
}
}