]> Git Repo - qemu.git/commitdiff
target/m68k: Replace DISAS_TB_JUMP with DISAS_NORETURN
authorRichard Henderson <[email protected]>
Sat, 12 May 2018 05:02:43 +0000 (22:02 -0700)
committerLaurent Vivier <[email protected]>
Mon, 11 Jun 2018 09:43:11 +0000 (11:43 +0200)
We have exited the TB after using goto_tb; there is no
distinction from DISAS_NORETURN.

Signed-off-by: Richard Henderson <[email protected]>
Message-Id: <20180512050250[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
target/m68k/translate.c

index de1be58f65c270ee067dd37244447ebef2e02a7a..bfa30cde0ae9f87571721ec5bb2635b60f06f1af 100644 (file)
@@ -199,7 +199,6 @@ static void do_writebacks(DisasContext *s)
 /* is_jmp field values */
 #define DISAS_JUMP      DISAS_TARGET_0 /* only pc was modified dynamically */
 #define DISAS_UPDATE    DISAS_TARGET_1 /* cpu state was modified dynamically */
-#define DISAS_TB_JUMP   DISAS_TARGET_2 /* only pc was modified statically */
 #define DISAS_JUMP_NEXT DISAS_TARGET_3
 
 #if defined(CONFIG_USER_ONLY)
@@ -1496,7 +1495,7 @@ static void gen_jmp_tb(DisasContext *s, int n, uint32_t dest)
         gen_jmp_im(s, dest);
         tcg_gen_exit_tb(NULL, 0);
     }
-    s->is_jmp = DISAS_TB_JUMP;
+    s->is_jmp = DISAS_NORETURN;
 }
 
 DISAS_INSN(scc)
@@ -6148,7 +6147,6 @@ void gen_intermediate_code(CPUState *cs, TranslationBlock *tb)
             /* indicate that the hash table must be used to find the next TB */
             tcg_gen_exit_tb(NULL, 0);
             break;
-        case DISAS_TB_JUMP:
         case DISAS_NORETURN:
             /* nothing more to generate */
             break;
This page took 0.035758 seconds and 4 git commands to generate.