From 48996a6627b181cf85cbf8e0f2bc01f811b966b1 Mon Sep 17 00:00:00 2001 From: Toby Thain Date: Sun, 1 Feb 2015 22:25:59 -0500 Subject: [PATCH] Typo and one more warning. --- assemble.c | 2 +- assemble_aux.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/assemble.c b/assemble.c index 5b28222..a6dfb88 100644 --- a/assemble.c +++ b/assemble.c @@ -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; diff --git a/assemble_aux.c b/assemble_aux.c index 2457129..dc6b9d0 100644 --- a/assemble_aux.c +++ b/assemble_aux.c @@ -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: