From dba4f1bcc3d45384238864d006b0a83788b56a65 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 2 Mar 2012 23:30:05 +0100 Subject: w64: Change data type of parameters for flush_icache_range The TCG targets i386 and tci needed a change of the function prototype for w64. This change is currently not needed for the other TCG targets, but it can be applied to avoid code differences. Cc: Blue Swirl Cc: Andrzej Zaborowski Cc: Richard Henderson Cc: Aurelien Jarno Cc: Alexander Graf Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- tcg/hppa/tcg-target.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tcg/hppa') diff --git a/tcg/hppa/tcg-target.h b/tcg/hppa/tcg-target.h index 7f3c4cc..d4bf6fe 100644 --- a/tcg/hppa/tcg-target.h +++ b/tcg/hppa/tcg-target.h @@ -107,7 +107,9 @@ typedef enum { /* Note: must be synced with dyngen-exec.h */ #define TCG_AREG0 TCG_REG_R17 -static inline void flush_icache_range(unsigned long start, unsigned long stop) + +static inline void flush_icache_range(tcg_target_ulong start, + tcg_target_ulong stop) { start &= ~31; while (start <= stop) { -- cgit v1.1