mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
output: aout -- Use nasm_x_space helpers
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
373583c6c8
commit
94b4a2c819
1 changed files with 1 additions and 4 deletions
|
|
@ -294,10 +294,7 @@ static void aout_deflabel(char *name, int32_t segment, int64_t offset,
|
|||
expr *e;
|
||||
char *p = special;
|
||||
|
||||
while (*p && !nasm_isspace(*p))
|
||||
p++;
|
||||
while (*p && nasm_isspace(*p))
|
||||
p++;
|
||||
p = nasm_skip_spaces(nasm_skip_word(p));
|
||||
stdscan_reset();
|
||||
stdscan_set(p);
|
||||
tokval.t_type = TOKEN_INVALID;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue