From e06335b9515f0508f33846e58b2028dfa4fc9983 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 24 Mar 2013 09:04:48 +0100 Subject: 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 --- target-moxie/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-moxie') 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) { -- cgit v1.2.1