From: ths Date: Tue, 6 May 2008 10:03:16 +0000 (+0000) Subject: Fix MIPS64 branches. Funny how this survived testing. X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~14931 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7ef7bf225416c2d4b9a730feec746c5b60e9655;p=sdk%2Femulator%2Fqemu.git Fix MIPS64 branches. Funny how this survived testing. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4355 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-mips/translate.c b/target-mips/translate.c index eb8e09e..6121c28 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -1763,7 +1763,7 @@ static inline void tcg_gen_jnz_bcond(int label) int r_tmp = tcg_temp_new(TCG_TYPE_TL); tcg_gen_ld_tl(r_tmp, cpu_env, offsetof(CPUState, bcond)); - tcg_gen_brcond_tl(TCG_COND_NE, r_tmp, tcg_const_i32(0), label); + tcg_gen_brcond_tl(TCG_COND_NE, r_tmp, tcg_const_tl(0), label); } /* Branches (before delay slot) */