Add patch to compile on amd64 (forgotten in previous commit)

This commit is contained in:
Johan van Selst 2009-01-12 06:46:02 +00:00
parent 7b61b3ed81
commit 51970be9f7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=225822

View File

@ -0,0 +1,11 @@
--- src/utils/MemoryOps.cc.orig 2009-01-10 02:09:59.000000000 +0100
+++ src/utils/MemoryOps.cc 2009-01-10 02:09:03.000000000 +0100
@@ -79,7 +79,7 @@ static inline void memset_64_SSE(
}
#ifdef ASM_X86_64
asm volatile (
- "movq %0, %%xmm0;"
+ "movd %0, %%xmm0;"
"unpcklps %%xmm0, %%xmm0;"
: // no output
: "r" (val)