summaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/patch-dyngen.h
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/qemu-devel/files/patch-dyngen.h')
-rw-r--r--emulators/qemu-devel/files/patch-dyngen.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/emulators/qemu-devel/files/patch-dyngen.h b/emulators/qemu-devel/files/patch-dyngen.h
deleted file mode 100644
index 09ab311dfdf6..000000000000
--- a/emulators/qemu-devel/files/patch-dyngen.h
+++ /dev/null
@@ -1,11 +0,0 @@
-# 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) {