mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
translate-all: Change tb_check_watchpoint() argument to CPUState
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
74f10515d1
commit
239c51a54f
3 changed files with 4 additions and 4 deletions
|
@ -1371,9 +1371,9 @@ void tb_invalidate_phys_addr(AddressSpace *as, hwaddr addr)
|
|||
}
|
||||
#endif /* TARGET_HAS_ICE && !defined(CONFIG_USER_ONLY) */
|
||||
|
||||
void tb_check_watchpoint(CPUArchState *env)
|
||||
void tb_check_watchpoint(CPUState *cpu)
|
||||
{
|
||||
CPUState *cpu = ENV_GET_CPU(env);
|
||||
CPUArchState *env = cpu->env_ptr;
|
||||
TranslationBlock *tb;
|
||||
|
||||
tb = tb_find_pc(cpu->mem_io_pc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue