From 20f8bd483c3ead658df7563d00768a9874ebb6f0 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Fri, 13 Jan 2012 16:01:40 +0100 Subject: [PATCH] target-i386: fix compilation with --enable-debug-tcg Commit 2355c16e74ffa4d14e7fc2b4a23b055565ac0221 introduced a new ldmxcsr helper taking an i32 argument, but the helper is actually passed a long. Fix that by truncating the long to i32. Signed-off-by: Aurelien Jarno --- target-i386/translate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/target-i386/translate.c b/target-i386/translate.c index b9839c5..860b4a3 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -7544,7 +7544,8 @@ static target_ulong disas_insn(DisasContext *s, target_ulong pc_start) gen_lea_modrm(s, modrm, ®_addr, &offset_addr); if (op == 2) { gen_op_ld_T0_A0(OT_LONG + s->mem_index); - gen_helper_ldmxcsr(cpu_T[0]); + tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]); + gen_helper_ldmxcsr(cpu_tmp2_i32); } else { tcg_gen_ld32u_tl(cpu_T[0], cpu_env, offsetof(CPUX86State, mxcsr)); gen_op_st_T0_A0(OT_LONG + s->mem_index); -- 2.7.4