mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
tcg: Change flush_icache_range arguments to uintptr_t
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
35aa3fb387
commit
b93949ef6a
10 changed files with 17 additions and 31 deletions
|
@ -111,8 +111,7 @@ typedef enum {
|
|||
#define TCG_AREG0 TCG_REG_R17
|
||||
|
||||
|
||||
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)
|
||||
{
|
||||
start &= ~31;
|
||||
while (start <= stop) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue