diff options
| author | Richard Henderson | 2013-08-20 23:35:34 +0200 |
|---|---|---|
| committer | Richard Henderson | 2013-09-02 18:08:29 +0200 |
| commit | 04d5a1da70dfe1a3a5ac5b5a8e7a7b8136d3a985 (patch) | |
| tree | 1e1e4f829b40d6aa602cdd7552f2e5d484f6f7d9 /cpu-exec.c | |
| parent | tcg: Change flush_icache_range arguments to uintptr_t (diff) | |
| download | qemu-04d5a1da70dfe1a3a5ac5b5a8e7a7b8136d3a985.tar.gz qemu-04d5a1da70dfe1a3a5ac5b5a8e7a7b8136d3a985.tar.xz qemu-04d5a1da70dfe1a3a5ac5b5a8e7a7b8136d3a985.zip | |
tcg: Change tcg_qemu_tb_exec return to uintptr_t
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 301be28bf7..14af2edab6 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -53,7 +53,7 @@ void cpu_resume_from_signal(CPUArchState *env, void *puc) static inline tcg_target_ulong cpu_tb_exec(CPUState *cpu, uint8_t *tb_ptr) { CPUArchState *env = cpu->env_ptr; - tcg_target_ulong next_tb = tcg_qemu_tb_exec(env, tb_ptr); + uintptr_t next_tb = tcg_qemu_tb_exec(env, tb_ptr); if ((next_tb & TB_EXIT_MASK) > TB_EXIT_IDX1) { /* We didn't start executing this TB (eg because the instruction * counter hit zero); we must restore the guest PC to the address |
