From 61ab9a42cdbd124d853bd6b4460cafe3c6029856 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Tue, 27 Feb 2018 09:21:25 -0500 Subject: [PATCH] target-m68k: Remove incorrect clearing of cc_x The CF docs certainly doesnt suggest this is true. Backports commit 18dd87f26bed46f22bb1b9536329c02de500f407 from qemu --- qemu/target-m68k/helper.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/qemu/target-m68k/helper.c b/qemu/target-m68k/helper.c index c0398ba4..29b9a5d6 100644 --- a/qemu/target-m68k/helper.c +++ b/qemu/target-m68k/helper.c @@ -121,19 +121,12 @@ static uint32_t cpu_m68k_flush_flags(CPUM68KState *env, int op) break; case CC_OP_LOGICB: SET_NZ(dest, int8_t); - goto set_x; break; case CC_OP_LOGICW: SET_NZ(dest, int16_t); - goto set_x; break; case CC_OP_LOGIC: SET_NZ(dest, int32_t); -set_x: - if (!m68k_feature(env, M68K_FEATURE_M68000)) { - /* Unlike m68k, coldfire always clears the overflow bit. */ - env->cc_x = 0; - } break; case CC_OP_ADDB: SET_FLAGS_ADD(int8_t, uint8_t);