mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
parser: No need to split line if it a bit longer than 80 chars
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
5abbe375cf
commit
1f4ccb9282
3
parser.c
3
parser.c
@ -273,8 +273,7 @@ restart_parse:
|
||||
expr *value;
|
||||
|
||||
i = stdscan(NULL, &tokval);
|
||||
value =
|
||||
evaluate(stdscan, NULL, &tokval, NULL, pass0, nasm_error, NULL);
|
||||
value = evaluate(stdscan, NULL, &tokval, NULL, pass0, nasm_error, NULL);
|
||||
i = tokval.t_type;
|
||||
if (!value) { /* but, error in evaluator */
|
||||
result->opcode = I_none; /* unrecoverable parse error: */
|
||||
|
Loading…
Reference in New Issue
Block a user