parser: don't use midcode declarations

OpenWatcom can't handle midcode variable declarations.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2009-06-23 11:34:42 -07:00
parent 02846d30c0
commit 552bc2c394

View File

@ -174,6 +174,7 @@ insn *parse_line(int pass, char *buffer, insn * result,
int j;
bool first;
bool insn_is_label = false;
bool recover;
restart_parse:
first = true;
@ -679,7 +680,7 @@ restart_parse:
}
}
bool recover = false;
recover = false;
if (mref && bracket) { /* find ] at the end */
if (i != ']') {
error(ERR_NONFATAL, "parser: expecting ]");