summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2024-01-03 21:11:35 -0500
committerMatt Turner <mattst88@gmail.com>2024-01-03 21:24:46 -0500
commitaf101d3c213bafd7d43516519ed911a11e5d23b6 (patch)
tree1c9769505177686fd9b7b6dc5a1b161e92c19b9c
parent20cc4ee0e95d77d3e0072a4da625363ab7e6c53b (diff)
pixman-mmx: Don't redefine _MM_SHUFFLE
-rw-r--r--pixman/pixman-mmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pixman/pixman-mmx.c b/pixman/pixman-mmx.c
index 3a85616..52c70e9 100644
--- a/pixman/pixman-mmx.c
+++ b/pixman/pixman-mmx.c
@@ -103,7 +103,7 @@ _mm_mulhi_pu16 (__m64 __A, __m64 __B)
# endif
#endif
-#ifndef _MSC_VER
+#ifndef _MM_SHUFFLE
#define _MM_SHUFFLE(fp3,fp2,fp1,fp0) \
(((fp3) << 6) | ((fp2) << 4) | ((fp1) << 2) | (fp0))
#endif