]> Git Repo - qemu.git/commitdiff
tcg: Remove redundant tcg_target_init checks
authorRichard Henderson <[email protected]>
Tue, 4 Jun 2013 16:53:19 +0000 (09:53 -0700)
committerRichard Henderson <[email protected]>
Wed, 5 Jun 2013 12:54:40 +0000 (05:54 -0700)
We've got a compile-time check for the condition in exec/cpu-defs.h.

Reviewed-by: Andreas Färber <[email protected]>
Reviewed-by: liguang <[email protected]>
Signed-off-by: Richard Henderson <[email protected]>
tcg/arm/tcg-target.c
tcg/i386/tcg-target.c
tcg/s390/tcg-target.c

index 3d434124a052b70be2db8de0bed95f4f90eb6f1a..6be736b75e084c9a2fe16359470c3c6edbcf6d66 100644 (file)
@@ -2053,12 +2053,6 @@ static const TCGTargetOpDef arm_op_defs[] = {
 
 static void tcg_target_init(TCGContext *s)
 {
-#if !defined(CONFIG_USER_ONLY)
-    /* fail safe */
-    if ((1 << CPU_TLB_ENTRY_BITS) != sizeof(CPUTLBEntry))
-        tcg_abort();
-#endif
-
     tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xffff);
     tcg_regset_set32(tcg_target_call_clobber_regs, 0,
                      (1 << TCG_REG_R0) |
index 9eec06c8a43333b9e9a88b2b81e681e8bd3de059..9e95477ef4c1b4e3df8612b96b5005605c630c09 100644 (file)
@@ -2283,12 +2283,6 @@ static void tcg_target_init(TCGContext *s)
     }
 #endif
 
-#if !defined(CONFIG_USER_ONLY)
-    /* fail safe */
-    if ((1 << CPU_TLB_ENTRY_BITS) != sizeof(CPUTLBEntry))
-        tcg_abort();
-#endif
-
     if (TCG_TARGET_REG_BITS == 64) {
         tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xffff);
         tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I64], 0, 0xffff);
index 7d6f777081b0df7f268c5ba3164f816502d5df52..f229f1c3463a75fc6d55df55de5280b8966e9ffa 100644 (file)
@@ -2324,13 +2324,6 @@ static void query_facilities(void)
 
 static void tcg_target_init(TCGContext *s)
 {
-#if !defined(CONFIG_USER_ONLY)
-    /* fail safe */
-    if ((1 << CPU_TLB_ENTRY_BITS) != sizeof(CPUTLBEntry)) {
-        tcg_abort();
-    }
-#endif
-
     query_facilities();
 
     tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xffff);
This page took 0.035875 seconds and 4 git commands to generate.