mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
parser.c: pasrse_line -- fix alignment
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
a7643f4c04
commit
c2509508b5
6
parser.c
6
parser.c
@ -925,9 +925,9 @@ restart_parse:
|
||||
|
||||
result->operands = operand; /* set operand count */
|
||||
|
||||
/* clear remaining operands */
|
||||
while (operand < MAX_OPERANDS)
|
||||
result->oprs[operand++].type = 0;
|
||||
/* clear remaining operands */
|
||||
while (operand < MAX_OPERANDS)
|
||||
result->oprs[operand++].type = 0;
|
||||
|
||||
/*
|
||||
* Transform RESW, RESD, RESQ, REST, RESO, RESY into RESB.
|
||||
|
Loading…
Reference in New Issue
Block a user