From 0ad6a7b293fd048dab2cfebfddf966ec879bcac9 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Thu, 30 Jun 2011 01:36:45 +0400 Subject: [PATCH] preproc: Refactor smacro paramters expansion Signed-off-by: Cyrill Gorcunov --- preproc.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/preproc.c b/preproc.c index 8f3e3cb9..07568da5 100644 --- a/preproc.c +++ b/preproc.c @@ -4632,18 +4632,21 @@ again: list_for_each(t, m->expansion) { if (is_smacro_param(t)) { Token *pcopy = tline, **ptail = &pcopy; - Token *ttt, *pt; + Token *ttt; int i, idx; idx = smacro_get_param_idx(t); ttt = params[idx]; - i = paramsize[idx]; - while (--i >= 0) { - pt = *ptail = new_Token(tline, ttt->type, - ttt->text, 0); - ptail = &pt->next; + + /* + * We need smacro paramters appended. + */ + for (i = paramsize[idx]; i > 0; i--) { + *ptail = new_Token(tline, ttt->type, ttt->text, 0); + ptail = &(*ptail)->next; ttt = ttt->next; } + tline = pcopy; } else if (t->type == TOK_PREPROC_Q) { tt = new_Token(tline, TOK_ID, mname, 0); -- 2.11.4.GIT