diff options
author | Stefan Weil | 2011-09-14 18:27:54 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2011-09-21 11:49:01 +0200 |
commit | 782ea2c7598a9d07393b6024ec5dfcde96ae3d90 (patch) | |
tree | f7ea00d4088b9b2d7cf2a5d3555b026b6755bf7b /target-i386/translate.c | |
parent | Revert "alpha-softmmu: Disable for the 0.15 release branch." (diff) | |
download | qemu-782ea2c7598a9d07393b6024ec5dfcde96ae3d90.tar.gz qemu-782ea2c7598a9d07393b6024ec5dfcde96ae3d90.tar.xz qemu-782ea2c7598a9d07393b6024ec5dfcde96ae3d90.zip |
target-i386: Remove data type CCTable
Remove also two assert statements which were the last remaining users.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'target-i386/translate.c')
-rw-r--r-- | target-i386/translate.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-i386/translate.c b/target-i386/translate.c index b9667628a0..b894e97e15 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -7641,11 +7641,6 @@ static target_ulong disas_insn(DisasContext *s, target_ulong pc_start) void optimize_flags_init(void) { -#if TCG_TARGET_REG_BITS == 32 - assert(sizeof(CCTable) == (1 << 3)); -#else - assert(sizeof(CCTable) == (1 << 4)); -#endif cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env"); cpu_cc_op = tcg_global_mem_new_i32(TCG_AREG0, offsetof(CPUState, cc_op), "cc_op"); |