mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-04-12 18:40:23 +08:00
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:
parent
2a75829452
commit
10b4a18d7f
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user