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:
H. Peter Anvin 2010-04-07 16:54:56 -07:00
parent 8adfa72441
commit a36a4f2f1d

11
nasm.c
View File

@ -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) {