diff options
author | Brian Paul <[email protected]> | 2011-09-21 11:37:49 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-22 08:26:36 -0600 |
commit | 37ef7c22ab3ab9ac976ad955197fe80fae5bf8b8 (patch) | |
tree | 90529b711f3c7fd4bde9b8fe981f755ba6a94095 /src/gallium/auxiliary/translate | |
parent | c8c2fc9a7a029bb61520973e55fb3cec18f13e20 (diff) |
translate: check for PIPE_SUBSYSTEM_EMBEDDED
Diffstat (limited to 'src/gallium/auxiliary/translate')
-rw-r--r-- | src/gallium/auxiliary/translate/translate_sse.c | 2 |
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 8cb3fd6c4c0..54414ef077f 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__)) +#if (defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__))) && !defined(PIPE_SUBSYSTEM_EMBEDDED) #include "rtasm/rtasm_cpu.h" #include "rtasm/rtasm_x86sse.h" |