diff options
| author | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2010-04-20 16:12:41 +0200 |
|---|---|---|
| committer | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2010-04-20 16:12:41 +0200 |
| commit | 4d5fcfb9718d40802bb2424b26373c276993ebbd (patch) | |
| tree | 36bd7a09f14824caba6d5ed97e7621b55a4b4213 | |
| parent | 3ad3168125ecb1910e6e241dc9056bccb57e9d0a (diff) | |
| download | tinycc-4d5fcfb9718d40802bb2424b26373c276993ebbd.tar.gz tinycc-4d5fcfb9718d40802bb2424b26373c276993ebbd.tar.bz2 | |
Delete unused vtop_saved variable in unary_type
| -rw-r--r-- | tccgen.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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(); |
