From 4d5fcfb9718d40802bb2424b26373c276993ebbd Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Tue, 20 Apr 2010 16:12:41 +0200 Subject: [PATCH] Delete unused vtop_saved variable in unary_type --- tccgen.c | 2 -- 1 file changed, 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();