projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce5c37c
)
Fix typo in ppc icache flush.
author
pbrook
<pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 11 Mar 2006 20:43:48 +0000
(20:43 +0000)
committer
pbrook
<pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 11 Mar 2006 20:43:48 +0000
(20:43 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1782
c046a42c
-6fe2-441c-8c8c-
71466251a162
dyngen.h
patch
|
blob
|
history
diff --git
a/dyngen.h
b/dyngen.h
index
e0e1f4a
..
76866d4
100644
(file)
--- 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) {