Loading tcg/sparc/tcg-target.h +1 −1 Original line number Diff line number Diff line Loading @@ -153,7 +153,7 @@ typedef enum { static inline void flush_icache_range(uintptr_t start, uintptr_t stop) { uintptr_t p; for (p = start & -8; p < (stop + 7) & -8; p += 8) { for (p = start & -8; p < ((stop + 7) & -8); p += 8) { __asm__ __volatile__("flush\t%0" : : "r" (p)); } } Loading Loading
tcg/sparc/tcg-target.h +1 −1 Original line number Diff line number Diff line Loading @@ -153,7 +153,7 @@ typedef enum { static inline void flush_icache_range(uintptr_t start, uintptr_t stop) { uintptr_t p; for (p = start & -8; p < (stop + 7) & -8; p += 8) { for (p = start & -8; p < ((stop + 7) & -8); p += 8) { __asm__ __volatile__("flush\t%0" : : "r" (p)); } } Loading