mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-09 08:51:18 +08:00
preproc: Alignment in loop
Just for easier reading Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
8a61142504
commit
5b6c96b9fd
@ -4733,9 +4733,9 @@ static Token *expand_id(Token * tline)
|
||||
|
||||
cur = tline;
|
||||
while (cur->next &&
|
||||
(cur->next->type == TOK_ID ||
|
||||
cur->next->type == TOK_PREPROC_ID
|
||||
|| cur->next->type == TOK_NUMBER))
|
||||
(cur->next->type == TOK_ID ||
|
||||
cur->next->type == TOK_PREPROC_ID ||
|
||||
cur->next->type == TOK_NUMBER))
|
||||
cur = cur->next;
|
||||
|
||||
/* If identifier consists of just one token, don't expand */
|
||||
|
Loading…
Reference in New Issue
Block a user