From: Stefan Weil Date: Sun, 24 Mar 2013 08:04:48 +0000 (+0100) Subject: target-moxie: Fix pointer-to-integer conversion (MinGW-w64) X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e06335b9515f0508f33846e58b2028dfa4fc9983;p=qemu.git target-moxie: Fix pointer-to-integer conversion (MinGW-w64) The type cast must use tcg_target_long instead of long. This makes a difference for hosts where sizeof(long) != sizeof(void *). Cc: Anthony Green Cc: Blue Swirl Signed-off-by: Stefan Weil Signed-off-by: Anthony Green Signed-off-by: Blue Swirl --- diff --git a/target-moxie/translate.c b/target-moxie/translate.c index 34f166e98f..cc02bd36f2 100644 --- a/target-moxie/translate.c +++ b/target-moxie/translate.c @@ -133,7 +133,7 @@ static inline void gen_goto_tb(CPUMoxieState *env, DisasContext *ctx, !ctx->singlestep_enabled) { tcg_gen_goto_tb(n); tcg_gen_movi_i32(cpu_pc, dest); - tcg_gen_exit_tb((long) tb + n); + tcg_gen_exit_tb((tcg_target_long)tb + n); } else { tcg_gen_movi_i32(cpu_pc, dest); if (ctx->singlestep_enabled) {