Remove unused variables

Remove unused local variables and declare them conditionally when they
are used only on some architectures.
This commit is contained in:
Thomas Preud'homme
2011-05-16 14:15:32 +02:00
parent db9d5f0fa4
commit ee06ef9dd3
4 changed files with 14 additions and 8 deletions

View File

@ -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;
}
}