Typo and one more warning.

This commit is contained in:
Toby Thain 2015-02-01 22:25:59 -05:00
parent 7ab53debb8
commit 48996a6627
2 changed files with 2 additions and 1 deletions

View File

@ -226,7 +226,7 @@ static int assemble(
if (!pass) {
/* This may work better in pass 2 - something in
RT-11 monitor needs the symbol to apear to be
defined even if I can't resolve it's value. */
defined even if I can't resolve its value. */
sym = add_sym(label, 0, SYMBOLFLAG_UNDEFINED, &absolute_section, &symbol_st);
} else
sym = NULL;

View File

@ -219,6 +219,7 @@ void implicit_gbl(
break;
case EX_LIT:
case EX_SYM:
case EX_TEMP_SYM: // Impossible on this pass
return;
case EX_ADD:
case EX_SUB: