diff options
author | Andreas Färber <afaerber@suse.de> | 2013-09-01 17:52:07 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-03-13 19:20:48 +0100 |
commit | 611d4f996f650294483ff4b01c3140651e2dd29c (patch) | |
tree | 94808c5ae0adabd499b28f734d33db2a5fe5452b /include/exec/cputlb.h | |
parent | 648f034c6cd81c64d93a1cfd7bb262006f560649 (diff) | |
download | qemu-611d4f996f650294483ff4b01c3140651e2dd29c.zip |
translate-all: Change tb_flush_jmp_cache() argument to CPUState
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'include/exec/cputlb.h')
-rw-r--r-- | include/exec/cputlb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/cputlb.h b/include/exec/cputlb.h index e21cb60442..e1eb4d92df 100644 --- a/include/exec/cputlb.h +++ b/include/exec/cputlb.h @@ -31,7 +31,7 @@ void tlb_set_dirty(CPUArchState *env, target_ulong vaddr); extern int tlb_flush_count; /* exec.c */ -void tb_flush_jmp_cache(CPUArchState *env, target_ulong addr); +void tb_flush_jmp_cache(CPUState *cpu, target_ulong addr); MemoryRegionSection * address_space_translate_for_iotlb(AddressSpace *as, hwaddr addr, hwaddr *xlat, |