diff options
-rw-r--r-- | dyngen.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ static void inline flush_icache_range(unsigned long start, unsigned long stop) { unsigned long p; - p = start & ~(MIN_CACHE_LINE_SIZE - 1); + start &= ~(MIN_CACHE_LINE_SIZE - 1); stop = (stop + MIN_CACHE_LINE_SIZE - 1) & ~(MIN_CACHE_LINE_SIZE - 1); for (p = start; p < stop; p += MIN_CACHE_LINE_SIZE) { |