commit | 239c51a54fe2a1ffc5108f496caae79e5be0cabc | [log] [tgz] |
---|---|---|
author | Andreas Färber <afaerber@suse.de> | Sun Sep 01 17:12:23 2013 +0200 |
committer | Andreas Färber <afaerber@suse.de> | Thu Mar 13 19:20:48 2014 +0100 |
tree | 44c1e97b13e0e6bfb270b598c92f56758ecbfc6d | |
parent | 74f10515d1b6e6064e4161157f8c98095c49065f [diff] [blame] |
translate-all: Change tb_check_watchpoint() argument to CPUState Signed-off-by: Andreas Färber <afaerber@suse.de>
diff --git a/exec.c b/exec.c index 5f7c472..7f94581 100644 --- a/exec.c +++ b/exec.c
@@ -1605,7 +1605,7 @@ wp->flags |= BP_WATCHPOINT_HIT; if (!cpu->watchpoint_hit) { cpu->watchpoint_hit = wp; - tb_check_watchpoint(env); + tb_check_watchpoint(cpu); if (wp->flags & BP_STOP_BEFORE_ACCESS) { cpu->exception_index = EXCP_DEBUG; cpu_loop_exit(cpu);