Remove vestiges of earlier type merger

master
David Mertens 2016-08-16 15:22:59 -04:00
parent 71b6220963
commit 0373fe0e2a
1 changed files with 1 additions and 4 deletions

View File

@ -2401,10 +2401,7 @@ static void parse_number(const char *p)
tcc_error("integer constant overflow");
}
if (tok == TOK_CINT || tok == TOK_CUINT)
tokc.i = n;
else
tokc.i = n;
tokc.i = n;
}
if (ch)
tcc_error("invalid number\n");