summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/translate
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2014-11-19 12:04:44 +0000
committerJosé Fonseca <jfonseca@vmware.com>2014-11-20 14:11:36 +0000
commit56bf948e11dd43c671fa6731bb49b4b68f9fe025 (patch)
tree11e378feefd2c2cc934ac13b8ad177901d8e9882 /src/gallium/auxiliary/translate
parent5e37a2a4a8aa9776ac17de794786479af2da2723 (diff)
downloadexternal_mesa3d-56bf948e11dd43c671fa6731bb49b4b68f9fe025.zip
external_mesa3d-56bf948e11dd43c671fa6731bb49b4b68f9fe025.tar.gz
external_mesa3d-56bf948e11dd43c671fa6731bb49b4b68f9fe025.tar.bz2
rtasm,translate: Re-enable SSE on Mingw64.
This reverts f4dd0991719ef3e2606920c5100b372181c60899. The src/gallium/tests/unit/translate_test.c gives the same results on MinGW 64-bits as on Linux 64-bits. And since MinGW is often used for development/testing due to its convenience, it's better not to have this sort of differences relative to MSVC. Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Diffstat (limited to 'src/gallium/auxiliary/translate')
-rw-r--r--src/gallium/auxiliary/translate/translate_sse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/translate/translate_sse.c b/src/gallium/auxiliary/translate/translate_sse.c
index c7c53b3..c7b6c36 100644
--- a/src/gallium/auxiliary/translate/translate_sse.c
+++ b/src/gallium/auxiliary/translate/translate_sse.c
@@ -35,7 +35,7 @@
#include "translate.h"
-#if (defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__))) && !defined(PIPE_SUBSYSTEM_EMBEDDED)
+#if (defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)) && !defined(PIPE_SUBSYSTEM_EMBEDDED)
#include "rtasm/rtasm_cpu.h"
#include "rtasm/rtasm_x86sse.h"