mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
nasm.c: smarter handling of missing directives
If we get D_unknown, we definitely don't need to pass it to the backend for analysis. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
parent
8adfa72441
commit
a36a4f2f1d
11
nasm.c
11
nasm.c
@ -1496,10 +1496,13 @@ static void assemble_file(char *fname, StrList **depend_ptr)
|
||||
}
|
||||
break;
|
||||
default:
|
||||
if (!d || !ofmt->directive(d, value, pass2))
|
||||
nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
|
||||
"unrecognised directive [%s]",
|
||||
directive);
|
||||
if (ofmt->directive(d, value, pass2))
|
||||
break;
|
||||
/* else fall through */
|
||||
case D_unknown:
|
||||
nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
|
||||
"unrecognised directive [%s]",
|
||||
directive);
|
||||
break;
|
||||
}
|
||||
if (err) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user