diff options
| author | Richard Henderson | 2013-08-20 23:40:25 +0200 |
|---|---|---|
| committer | Richard Henderson | 2013-09-02 18:08:29 +0200 |
| commit | 3e9bd63acf145bb2d3da277ee85167878ade53bd (patch) | |
| tree | 1df74775c419d95c015577779f3c72de17cc8f5c | |
| parent | tcg: Change tcg_qemu_tb_exec return to uintptr_t (diff) | |
| download | qemu-3e9bd63acf145bb2d3da277ee85167878ade53bd.tar.gz qemu-3e9bd63acf145bb2d3da277ee85167878ade53bd.tar.xz qemu-3e9bd63acf145bb2d3da277ee85167878ade53bd.zip | |
tcg: Fix next_tb type in cpu_exec
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
| -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)) { |
