diff options
author | Richard Henderson | 2013-08-20 23:22:50 +0200 |
---|---|---|
committer | Richard Henderson | 2013-09-02 18:08:29 +0200 |
commit | b93949ef6a5dea2b22987f2aa3028068e751a7e4 (patch) | |
tree | 3a2ef55c0ef0ec406b377d7b794a58ab5b4e2cc0 /tcg/tci | |
parent | qtest: Fix FMT_timeval vs time_t (diff) | |
download | qemu-b93949ef6a5dea2b22987f2aa3028068e751a7e4.tar.gz qemu-b93949ef6a5dea2b22987f2aa3028068e751a7e4.tar.xz qemu-b93949ef6a5dea2b22987f2aa3028068e751a7e4.zip |
tcg: Change flush_icache_range arguments to uintptr_t
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg/tci')
-rw-r--r-- | tcg/tci/tcg-target.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tcg/tci/tcg-target.h b/tcg/tci/tcg-target.h index ff12b4b9c7..e284972d92 100644 --- a/tcg/tci/tcg-target.h +++ b/tcg/tci/tcg-target.h @@ -172,8 +172,7 @@ void tci_disas(uint8_t opc); tcg_target_ulong tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr); #define tcg_qemu_tb_exec tcg_qemu_tb_exec -static inline void flush_icache_range(tcg_target_ulong start, - tcg_target_ulong stop) +static inline void flush_icache_range(uintptr_t start, uintptr_t stop) { } |