(yylex): Turn off overflow flag when fixing up large traditional hex

constants.

From-SVN: r7050
This commit is contained in:
Richard Kenner 1994-04-16 17:04:03 -04:00
parent 3d89634a51
commit ba85b2e482
1 changed files with 2 additions and 0 deletions

View File

@ -1610,6 +1610,8 @@ yylex ()
{
TREE_TYPE (yylval.ttype) = unsigned_type (type);
yylval.ttype = convert (type, yylval.ttype);
TREE_OVERFLOW (yylval.ttype)
= TREE_CONSTANT_OVERFLOW (yylval.ttype) = 0;
}
else
TREE_TYPE (yylval.ttype) = type;