diff options
| author | Andreas Färber | 2013-09-01 17:43:17 +0200 |
|---|---|---|
| committer | Andreas Färber | 2014-03-13 19:20:48 +0100 |
| commit | 648f034c6cd81c64d93a1cfd7bb262006f560649 (patch) | |
| tree | 94d0d35935e07676b613e279303884134647417c /exec.c | |
| parent | translate-all: Change cpu_io_recompile() argument to CPUState (diff) | |
| download | qemu-648f034c6cd81c64d93a1cfd7bb262006f560649.tar.gz qemu-648f034c6cd81c64d93a1cfd7bb262006f560649.tar.xz qemu-648f034c6cd81c64d93a1cfd7bb262006f560649.zip | |
translate-all: Change tb_gen_code() argument to CPUState
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'exec.c')
| -rw-r--r-- | exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1611,7 +1611,7 @@ static void check_watchpoint(int offset, int len_mask, int flags) 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); } } |
