diff mbox

[20/52] target-m68k: Remove incorrect clearing of cc_x

Message ID 1462392752-17703-21-git-send-email-laurent@vivier.eu
State New
Headers show

Commit Message

Laurent Vivier May 4, 2016, 8:12 p.m. UTC
From: Richard Henderson <rth@twiddle.net>

The CF docs certainly doesnt suggest this is true.

Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
 target-m68k/helper.c | 7 -------
 1 file changed, 7 deletions(-)
diff mbox

Patch

diff --git a/target-m68k/helper.c b/target-m68k/helper.c
index ffed180..9c14d6f 100644
--- a/target-m68k/helper.c
+++ b/target-m68k/helper.c
@@ -206,19 +206,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);