From: Greg King Date: Sat, 30 Nov 2013 13:24:58 +0000 (-0500) Subject: Removed a now-redundant line. X-Git-Tag: V2.15~211^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a6506abcd1d93f6672444ca3836ae316de1178a0;p=cc65 Removed a now-redundant line. --- diff --git a/src/ca65/main.c b/src/ca65/main.c index da826f4db..85474f693 100644 --- a/src/ca65/main.c +++ b/src/ca65/main.c @@ -768,8 +768,7 @@ static void OneLine (void) } else if (Mac != 0) { /* A macro expansion */ MacExpandStart (Mac); - } else if (Instr >= 0 || - (UbiquitousIdents && ((Instr = FindInstruction (&CurTok.SVal)) >= 0))) { + } else if (Instr >= 0) { /* A mnemonic - assemble one instruction */ HandleInstruction (Instr); } else if (PCAssignment && (CurTok.Tok == TOK_STAR || CurTok.Tok == TOK_PC)) {