diff options
| author | Richard Henderson | 2013-06-04 18:53:19 +0200 |
|---|---|---|
| committer | Richard Henderson | 2013-06-05 14:54:40 +0200 |
| commit | 56bbc2f967ce185fa1c5c39e1aeb5b68b26242e9 (patch) | |
| tree | 7c5ce84de7ed288b944b33eb02005a72c9d89bac | |
| parent | tcg: Use QEMU_BUILD_BUG_ON for CPU_TLB_ENTRY_BITS (diff) | |
| download | qemu-56bbc2f967ce185fa1c5c39e1aeb5b68b26242e9.tar.gz qemu-56bbc2f967ce185fa1c5c39e1aeb5b68b26242e9.tar.xz qemu-56bbc2f967ce185fa1c5c39e1aeb5b68b26242e9.zip | |
tcg: Remove redundant tcg_target_init checks
We've got a compile-time check for the condition in exec/cpu-defs.h.
Reviewed-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: liguang <lig.fnst@cn.fujitsu.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
| -rw-r--r-- | tcg/arm/tcg-target.c | 6 | ||||
| -rw-r--r-- | tcg/i386/tcg-target.c | 6 | ||||
| -rw-r--r-- | tcg/s390/tcg-target.c | 7 |
3 files changed, 0 insertions, 19 deletions
diff --git a/tcg/arm/tcg-target.c b/tcg/arm/tcg-target.c index 3d434124a0..6be736b75e 100644 --- a/tcg/arm/tcg-target.c +++ b/tcg/arm/tcg-target.c @@ -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) | diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c index 9eec06c8a4..9e95477ef4 100644 --- a/tcg/i386/tcg-target.c +++ b/tcg/i386/tcg-target.c @@ -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); diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c index 7d6f777081..f229f1c346 100644 --- a/tcg/s390/tcg-target.c +++ b/tcg/s390/tcg-target.c @@ -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); |
