From: bellard Date: Mon, 12 May 2008 22:55:35 +0000 (+0000) Subject: compilation fix X-Git-Tag: xen-3.3.0-rc1~194^2^2~3 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3bd8c5e4f1fdb61a3eb8a4a8b6e5b4cf1156ba76;p=qemu-xen-3.4-testing.git compilation fix git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4449 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-i386/translate.c b/target-i386/translate.c index 5c96f899..97c60513 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -6860,6 +6860,8 @@ void optimize_flags_init(void) cpu_T[0] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG1, "T0"); cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1"); cpu_A0 = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG3, "A0"); +#endif +#if defined(__i386__) cpu_tmp1 = tcg_global_reg2_new_hack(TCG_TYPE_I64, TCG_AREG1, TCG_AREG2, "tmp1"); #endif } @@ -6955,7 +6957,7 @@ static inline int gen_intermediate_code_internal(CPUState *env, #endif cpu_tmp0 = tcg_temp_new(TCG_TYPE_TL); -#if TARGET_LONG_BITS > HOST_LONG_BITS +#if !defined(__i386__) cpu_tmp1 = tcg_temp_new(TCG_TYPE_I64); #endif cpu_tmp2 = tcg_temp_new(TCG_TYPE_I32);