1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-25 17:29:50 +00:00

Removed a now-redundant line.

This commit is contained in:
Greg King 2013-11-30 08:24:58 -05:00
parent 309c8fb842
commit a6506abcd1

View File

@ -768,8 +768,7 @@ static void OneLine (void)
} else if (Mac != 0) { } else if (Mac != 0) {
/* A macro expansion */ /* A macro expansion */
MacExpandStart (Mac); MacExpandStart (Mac);
} else if (Instr >= 0 || } else if (Instr >= 0) {
(UbiquitousIdents && ((Instr = FindInstruction (&CurTok.SVal)) >= 0))) {
/* A mnemonic - assemble one instruction */ /* A mnemonic - assemble one instruction */
HandleInstruction (Instr); HandleInstruction (Instr);
} else if (PCAssignment && (CurTok.Tok == TOK_STAR || CurTok.Tok == TOK_PC)) { } else if (PCAssignment && (CurTok.Tok == TOK_STAR || CurTok.Tok == TOK_PC)) {