summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-games/ode/files/ode-0.5-PIC.patch')
-rw-r--r--dev-games/ode/files/ode-0.5-PIC.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-games/ode/files/ode-0.5-PIC.patch b/dev-games/ode/files/ode-0.5-PIC.patch
deleted file mode 100644
index 01c2fcbeb8e4..000000000000
--- a/dev-games/ode/files/ode-0.5-PIC.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Make sure we don't clobber %ebx (important with PIC).
-
-http://bugs.gentoo.org/77079
-
---- ode-0.5/ode/src/timer.cpp
-+++ ode-0.5/ode/src/timer.cpp
-@@ -117,9 +117,11 @@ static inline void getClockCount (unsign
- static inline void serialize()
- {
- asm volatile (
-+ "mov %%ebx,%%edi\n"
- "mov $0,%%eax\n"
- "cpuid\n"
-+ "mov %%edi,%%ebx\n"
-- : : : "%eax","%ebx","%ecx","%edx","cc","memory");
-+ : : : "%eax","%edi","%ecx","%edx","cc","memory");
- }
-
-