Delete unused vtop_saved variable in unary_type

master
Thomas Preud'homme 2010-04-20 16:12:41 +02:00
parent 3ad3168125
commit 4d5fcfb971
1 changed files with 0 additions and 2 deletions

View File

@ -4054,11 +4054,9 @@ static void expr_type(CType *type)
static void unary_type(CType *type)
{
int a;
void *vtop_saved;
a = nocode_wanted;
nocode_wanted = 1;
vtop_saved = vtop;
unary();
*type = vtop->type;
vpop();