From: Richard Henderson Date: Tue, 20 Aug 2013 21:40:25 +0000 (-0700) Subject: tcg: Fix next_tb type in cpu_exec X-Git-Tag: v1.7.0-rc0~141^2~21 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3e9bd63acf145bb2d3da277ee85167878ade53bd;p=qemu-xen-unstable.git tcg: Fix next_tb type in cpu_exec Reviewed-by: Aurelien Jarno Signed-off-by: Richard Henderson --- diff --git a/cpu-exec.c b/cpu-exec.c index 14af2edab6..5a4399509e 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -209,7 +209,7 @@ int cpu_exec(CPUArchState *env) int ret, interrupt_request; TranslationBlock *tb; uint8_t *tc_ptr; - tcg_target_ulong next_tb; + uintptr_t next_tb; if (cpu->halted) { if (!cpu_has_work(cpu)) {