From 10b4a18d7fc51f7d83e7b45855730c7451e2fff1 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sat, 11 Jul 2009 17:31:21 +0400 Subject: [PATCH] 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 --- preproc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/preproc.c b/preproc.c index 736bbff9..feccc33a 100644 --- a/preproc.c +++ b/preproc.c @@ -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);