From: pbrook Date: Sat, 11 Mar 2006 20:43:48 +0000 (+0000) Subject: Fix typo in ppc icache flush. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f5ba07d399ff205da3e91de4389e936027856b48;p=qemu.git Fix typo in ppc icache flush. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1782 c046a42c-6fe2-441c-8c8c-71466251a162 --- 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) {