diff options
author | Richard Stallman <rms@gnu.org> | 1993-01-09 09:25:56 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-01-09 09:25:56 +0000 |
commit | ba99333a38457d0a41f5814b24126404d3f7e1be (patch) | |
tree | 41e0cafda669a0e7e7a2665898cc6b859425ca32 | |
parent | a2ecc7b9de79bad2645ba071c6c6b1f83ddb232d (diff) | |
download | gcc-ba99333a38457d0a41f5814b24126404d3f7e1be.zip gcc-ba99333a38457d0a41f5814b24126404d3f7e1be.tar.gz gcc-ba99333a38457d0a41f5814b24126404d3f7e1be.tar.bz2 |
(yylex): Change warning msg when decimal const is unsigned.
From-SVN: r3172
-rw-r--r-- | gcc/c-lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index d877176..00feafd 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -1584,7 +1584,7 @@ yylex () pedwarn ("integer constant out of range"); if (base == 10 && ! spec_unsigned && TREE_UNSIGNED (type)) - warning ("integer constant is so large that it is unsigned"); + warning ("decimal constant is so large that it is unsigned"); if (flag_traditional && !int_fits_type_p (yylval.ttype, type)) /* The traditional constant 0x80000000 is signed |