Skip to content

Commit

Permalink
tcg: Fix next_tb type in cpu_exec
Browse files Browse the repository at this point in the history
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
  • Loading branch information
rth7680 committed Sep 2, 2013
1 parent 04d5a1d commit 3e9bd63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpu-exec.c
Expand Up @@ -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)) {
Expand Down

0 comments on commit 3e9bd63

Please sign in to comment.