mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
expand_mmac_params: Format condition
It's much easier to read aligned Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
a731924978
commit
ca61119a01
@ -3607,9 +3607,9 @@ static Token *expand_mmac_params(Token * tline)
|
||||
|
||||
while (tline) {
|
||||
if (tline->type == TOK_PREPROC_ID &&
|
||||
(((tline->text[1] == '+' || tline->text[1] == '-')
|
||||
&& tline->text[2]) || tline->text[1] == '%'
|
||||
|| (tline->text[1] >= '0' && tline->text[1] <= '9'))) {
|
||||
(((tline->text[1] == '+' || tline->text[1] == '-') && tline->text[2]) ||
|
||||
(tline->text[1] >= '0' && tline->text[1] <= '9') ||
|
||||
tline->text[1] == '%')) {
|
||||
char *text = NULL;
|
||||
int type = 0, cc; /* type = 0 to placate optimisers */
|
||||
char tmpbuf[30];
|
||||
|
Loading…
x
Reference in New Issue
Block a user