Commit 706cd4b547db5c27585b6125a43663aba3404dfe
1 parent
c2f07f81
Fix typo in previous patch.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1800 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
exec.c
... | ... | @@ -1015,7 +1015,7 @@ static void breakpoint_invalidate(CPUState *env, target_ulong pc) |
1015 | 1015 | pd = p->phys_offset; |
1016 | 1016 | } |
1017 | 1017 | ram_addr = (pd & TARGET_PAGE_MASK) | (pc & ~TARGET_PAGE_MASK); |
1018 | - tb_invalidate_ram_page_range(ram_addr, ram_addr + 1, 0); | |
1018 | + tb_invalidate_phys_page_range(ram_addr, ram_addr + 1, 0); | |
1019 | 1019 | } |
1020 | 1020 | #endif |
1021 | 1021 | ... | ... |