From ba99333a38457d0a41f5814b24126404d3f7e1be Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sat, 9 Jan 1993 09:25:56 +0000 Subject: (yylex): Change warning msg when decimal const is unsigned. From-SVN: r3172 --- gcc/c-lex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/c-lex.c') 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 -- cgit v1.1