mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
preproc: Drop unused 'mtok' variable
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
9fde335005
commit
fb27fc21e7
@ -4827,7 +4827,7 @@ static bool expand_mmacro(Token * tline)
|
||||
{
|
||||
Token *label = NULL;
|
||||
int dont_prepend = 0;
|
||||
Token **params, *t, *mtok;
|
||||
Token **params, *t;
|
||||
Line *l = NULL;
|
||||
ExpDef *ed;
|
||||
ExpInv *ei;
|
||||
@ -4839,7 +4839,6 @@ static bool expand_mmacro(Token * tline)
|
||||
/* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
|
||||
if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
|
||||
return false;
|
||||
mtok = t;
|
||||
ed = is_mmacro(t, ¶ms);
|
||||
if (ed != NULL) {
|
||||
mname = t->text;
|
||||
|
Loading…
Reference in New Issue
Block a user