From: Toni Wilen Date: Sun, 12 Apr 2020 08:27:10 +0000 (+0300) Subject: Remove unneeded and wrong comparisons X-Git-Tag: 4400~77 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=212704b81dea0fb10b8bdf87a577759fed9bc0ec;p=francis%2Fwinuae.git Remove unneeded and wrong comparisons --- diff --git a/gencpu.cpp b/gencpu.cpp index d6a0825f..66acbd66 100644 --- a/gencpu.cpp +++ b/gencpu.cpp @@ -3005,7 +3005,7 @@ static void check_address_error(const char *name, int mode, const char *reg, in } // x,-(an): an is modified (MOVE to CCR counts as word sized) - if (mode == Apdi && (g_instr->size == sz_word || g_instr->size == i_MV2SR) && g_instr->mnemo != i_CLR) { + if (mode == Apdi && g_instr->mnemo != i_CLR) { out("m68k_areg(regs, %s) = %sa;\n", reg, name); } bus_error_reg_add = bus_error_reg_add_old;