preproc.c - remove redundant assignment

There is no need for tline assignment right
before it'll be assigned again in for() cycle.

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2009-07-11 17:31:21 +04:00
parent 2a75829452
commit 10b4a18d7f

View File

@ -3211,7 +3211,6 @@ static int do_directive(Token * tline)
}
p = pp = nasm_malloc(len);
t = tline;
for (t = tline; t; t = t->next) {
if (t->type == TOK_STRING) {
memcpy(p, t->text, t->a.len);