diff options
author | Richard Henderson <rth@twiddle.net> | 2013-08-20 14:40:25 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-09-02 09:08:29 -0700 |
commit | 3e9bd63acf145bb2d3da277ee85167878ade53bd (patch) | |
tree | 1df74775c419d95c015577779f3c72de17cc8f5c /cpu-exec.c | |
parent | 04d5a1da70dfe1a3a5ac5b5a8e7a7b8136d3a985 (diff) |
tcg: Fix next_tb type in cpu_exec
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'cpu-exec.c')
-rw-r--r-- | cpu-exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |