blob: 09ab311dfdf60daf8d8bcb8eeef41a0690a45df6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# 1.9
Index: qemu/dyngen.h
@@ -59,7 +59,7 @@
{
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) {
|