Delete unused vtop_saved variable in unary_type
This commit is contained in:
parent
3ad3168125
commit
4d5fcfb971
1 changed files with 0 additions and 2 deletions
2
tccgen.c
2
tccgen.c
|
@ -4054,11 +4054,9 @@ static void expr_type(CType *type)
|
||||||
static void unary_type(CType *type)
|
static void unary_type(CType *type)
|
||||||
{
|
{
|
||||||
int a;
|
int a;
|
||||||
void *vtop_saved;
|
|
||||||
|
|
||||||
a = nocode_wanted;
|
a = nocode_wanted;
|
||||||
nocode_wanted = 1;
|
nocode_wanted = 1;
|
||||||
vtop_saved = vtop;
|
|
||||||
unary();
|
unary();
|
||||||
*type = vtop->type;
|
*type = vtop->type;
|
||||||
vpop();
|
vpop();
|
||||||
|
|
Loading…
Add table
Reference in a new issue