commit | 648f034c6cd81c64d93a1cfd7bb262006f560649 | [log] [tgz] |
---|---|---|
author | Andreas Färber <afaerber@suse.de> | Sun Sep 01 17:43:17 2013 +0200 |
committer | Andreas Färber <afaerber@suse.de> | Thu Mar 13 19:20:48 2014 +0100 |
tree | 94d0d35935e07676b613e279303884134647417c | |
parent | 90b40a696a6bcfac88529930d4d1e1599878dae3 [diff] [blame] |
translate-all: Change tb_gen_code() argument to CPUState Signed-off-by: Andreas Färber <afaerber@suse.de>
diff --git a/exec.c b/exec.c index 7f94581..6f8b2ca 100644 --- a/exec.c +++ b/exec.c
@@ -1611,7 +1611,7 @@ cpu_loop_exit(cpu); } else { cpu_get_tb_cpu_state(env, &pc, &cs_base, &cpu_flags); - tb_gen_code(env, pc, cs_base, cpu_flags, 1); + tb_gen_code(cpu, pc, cs_base, cpu_flags, 1); cpu_resume_from_signal(env, NULL); } }