diff options
author | José Fonseca <[email protected]> | 2014-11-19 12:04:44 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2014-11-20 14:11:36 +0000 |
commit | 56bf948e11dd43c671fa6731bb49b4b68f9fe025 (patch) | |
tree | 11e378feefd2c2cc934ac13b8ad177901d8e9882 /src/gallium/auxiliary/rtasm/rtasm_x86sse.c | |
parent | 5e37a2a4a8aa9776ac17de794786479af2da2723 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_x86sse.c')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_x86sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_x86sse.c b/src/gallium/auxiliary/rtasm/rtasm_x86sse.c index 24ff820a4e3..f9637889187 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.c +++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.c @@ -25,7 +25,7 @@ #include "pipe/p_config.h" #include "util/u_cpu_detect.h" -#if defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__)) +#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64) #include "pipe/p_compiler.h" #include "util/u_debug.h" |