From: pbrook Date: Sat, 11 Mar 2006 20:43:48 +0000 (+0000) Subject: Fix typo in ppc icache flush. X-Git-Tag: release_0_8_1~115 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=fd0c2ee3f26c04556085d8bf600deef688290503;p=xenclient%2Fioemu.git Fix typo in ppc icache flush. --- diff --git a/dyngen.h b/dyngen.h index e0e1f4a1..76866d4a 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) {