From ee06ef9dd394f26b11fef078f07c635a02fd95d6 Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Mon, 16 May 2011 14:15:32 +0200 Subject: Remove unused variables Remove unused local variables and declare them conditionally when they are used only on some architectures. --- tccpp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tccpp.c') diff --git a/tccpp.c b/tccpp.c index feb533a..6aa067f 100644 --- a/tccpp.c +++ b/tccpp.c @@ -3011,7 +3011,6 @@ ST_FUNC void preprocess_new() { int i, c; const char *p, *r; - TokenSym *ts; /* init isid table */ for(i=CH_EOF;i<256;i++) @@ -3030,7 +3029,7 @@ ST_FUNC void preprocess_new() if (c == '\0') break; } - ts = tok_alloc(p, r - p - 1); + tok_alloc(p, r - p - 1); p = r; } } -- cgit v1.3.1