From 29d8ec7beebbf4d8f6094df91ad383b98d768b32 Mon Sep 17 00:00:00 2001 From: "Edgar E. Iglesias" Date: Thu, 7 Nov 2013 19:43:10 +0100 Subject: exec: Make tb_invalidate_phys_addr input an AS No functional change. Reviewed-by: Peter Maydell Signed-off-by: Edgar E. Iglesias --- exec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'exec.c') diff --git a/exec.c b/exec.c index be93ebb505..05ad67d3fd 100644 --- a/exec.c +++ b/exec.c @@ -503,7 +503,8 @@ static void breakpoint_invalidate(CPUState *cpu, target_ulong pc) { hwaddr phys = cpu_get_phys_page_debug(cpu, pc); if (phys != -1) { - tb_invalidate_phys_addr(phys | (pc & ~TARGET_PAGE_MASK)); + tb_invalidate_phys_addr(&address_space_memory, + phys | (pc & ~TARGET_PAGE_MASK)); } } #endif -- cgit v1.2.1