diff options
| author | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2011-05-16 14:15:32 +0200 |
|---|---|---|
| committer | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2011-05-16 14:15:32 +0200 |
| commit | ee06ef9dd394f26b11fef078f07c635a02fd95d6 (patch) | |
| tree | ff9839a42156909393bd121ade708221358377e7 /tccpp.c | |
| parent | db9d5f0fa4dc65bbf869ee4f98f53eafbab6059f (diff) | |
| download | tinycc-ee06ef9dd394f26b11fef078f07c635a02fd95d6.tar.gz tinycc-ee06ef9dd394f26b11fef078f07c635a02fd95d6.tar.bz2 | |
Remove unused variables
Remove unused local variables and declare them conditionally when they
are used only on some architectures.
Diffstat (limited to 'tccpp.c')
| -rw-r--r-- | tccpp.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; } } |
