Module Name: xsrc
Committed By: mrg
Date: Wed Dec 1 08:59:38 UTC 2010
Modified Files:
xsrc/external/mit/pixman/include: config.h
Log Message:
disable sse2 on amd64 for now.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 xsrc/external/mit/pixman/include/config.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: xsrc/external/mit/pixman/include/config.h
diff -u xsrc/external/mit/pixman/include/config.h:1.12 xsrc/external/mit/pixman/include/config.h:1.13
--- xsrc/external/mit/pixman/include/config.h:1.12 Sun Nov 21 20:49:46 2010
+++ xsrc/external/mit/pixman/include/config.h Wed Dec 1 08:59:38 2010
@@ -123,7 +123,7 @@
/* use OpenMP in the test suite */
#define USE_OPENMP 1
-#if defined(__x86_64__)
+#if defined(__x86_64__) && 0 /* GCC generates unaligned accesses; see PR 44159 */
/* use SSE2 compiler intrinsics */
#define USE_SSE2 1
#endif