summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2011-09-06 20:40:21 +0100
committerJosé Fonseca <[email protected]>2011-09-06 20:40:44 +0100
commitf4dd0991719ef3e2606920c5100b372181c60899 (patch)
treee1586ecfcde7be4e8d3e7f7cf74dbfb9606e73af /src/gallium/auxiliary/rtasm/rtasm_x86sse.c
parent5812b24845a2c56b65e2459c9daf1c4c565710fc (diff)
rtasm,translate: Disable on Mingw-w64.
Causes crash and stack corruption. Needs more investigation. Disable for now.
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_x86sse.c')
-rw-r--r--src/gallium/auxiliary/rtasm/rtasm_x86sse.c2
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 5231bb08374..cb880825d79 100644
--- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
+++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
@@ -24,7 +24,7 @@
#include "pipe/p_config.h"
#include "util/u_cpu_detect.h"
-#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
+#if defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__))
#include "pipe/p_compiler.h"
#include "util/u_debug.h"