diff options
author | Brian <[email protected]> | 2008-11-09 09:36:22 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-11-09 09:36:22 -0700 |
commit | 399da3a337932c6074a69ac73e711138271308eb (patch) | |
tree | 4d91410e455989954ac4879af3b22414a0dbdf64 /src/gallium/drivers | |
parent | a58dbf34ca88656739a8f8e5f4259e760365c9d0 (diff) |
gallium: use PIPE_ARCH_SSE to protect use of SSE instrinsics only
This allows us to use SSE codegen with debug builds again.
When PIPE_ARCH_SSE is set (w/ gcc -msse -msse2) we will also use the
gcc SSE intrinsic functions.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_fs_sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_fs_sse.c b/src/gallium/drivers/softpipe/sp_fs_sse.c index 8aa597f633a..31908a517b7 100644 --- a/src/gallium/drivers/softpipe/sp_fs_sse.c +++ b/src/gallium/drivers/softpipe/sp_fs_sse.c @@ -40,7 +40,7 @@ #include "tgsi/tgsi_sse2.h" -#if defined(PIPE_ARCH_X86) && defined(PIPE_ARCH_SSE) +#if defined(PIPE_ARCH_X86) #include "rtasm/rtasm_x86sse.h" |