diff options
author | marha <marha@users.sourceforge.net> | 2012-03-08 11:23:54 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-03-08 11:23:54 +0100 |
commit | b4e09d9f9c2cb930daef6b578e3051e71425ed7f (patch) | |
tree | 2f7978bbc080eacca775af19715931ae34c23836 /pixman | |
parent | 50ace52bb8308fd62b8bad9ae912dc18c4ae32ff (diff) | |
download | vcxsrv-b4e09d9f9c2cb930daef6b578e3051e71425ed7f.tar.gz vcxsrv-b4e09d9f9c2cb930daef6b578e3051e71425ed7f.tar.bz2 vcxsrv-b4e09d9f9c2cb930daef6b578e3051e71425ed7f.zip |
fontconfig libXau libXdmcp libXext libXft libXinerama libXmu pixman mesa
git update 8 Mar 2012
Diffstat (limited to 'pixman')
-rw-r--r-- | pixman/pixman/pixman-mmx.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pixman/pixman/pixman-mmx.c b/pixman/pixman/pixman-mmx.c index bd44f639e..fe31b0865 100644 --- a/pixman/pixman/pixman-mmx.c +++ b/pixman/pixman/pixman-mmx.c @@ -57,6 +57,9 @@ _mm_empty (void) #endif #ifdef USE_X86_MMX +# ifdef __SUNPRO_C +# include <xmmintrin.h> +# else /* We have to compile with -msse to use xmmintrin.h, but that causes SSE * instructions to be generated that we don't want. Just duplicate the * functions we want to use. */ @@ -82,6 +85,7 @@ _mm_shuffle_pi16 (__m64 __A, int8_t const __N) return ret; } +# endif #endif #define _MM_SHUFFLE(fp3,fp2,fp1,fp0) \ |