summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dyngen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dyngen.h b/dyngen.h
index e0e1f4a13a..76866d4a19 100644
--- a/dyngen.h
+++ b/dyngen.h
@@ -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) {