mirror of
https://github.com/mirror/tinycc.git
synced 2025-03-28 12:10:05 +08:00
Delete unused vtop_saved variable in unary_type
This commit is contained in:
parent
3ad3168125
commit
4d5fcfb971
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…
Reference in New Issue
Block a user