aboutsummaryrefslogtreecommitdiff
path: root/tccgen.c
diff options
context:
space:
mode:
authorThomas Preud'homme <thomas.preudhomme@celest.fr>2010-04-20 16:12:41 +0200
committerThomas Preud'homme <thomas.preudhomme@celest.fr>2010-04-20 16:12:41 +0200
commit4d5fcfb9718d40802bb2424b26373c276993ebbd (patch)
tree36bd7a09f14824caba6d5ed97e7621b55a4b4213 /tccgen.c
parent3ad3168125ecb1910e6e241dc9056bccb57e9d0a (diff)
downloadtinycc-4d5fcfb9718d40802bb2424b26373c276993ebbd.tar.gz
tinycc-4d5fcfb9718d40802bb2424b26373c276993ebbd.tar.bz2
Delete unused vtop_saved variable in unary_type
Diffstat (limited to 'tccgen.c')
-rw-r--r--tccgen.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tccgen.c b/tccgen.c
index a48ca2b..6c8faa6 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -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();