diff options
author | José Fonseca <[email protected]> | 2008-05-28 16:12:14 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-05-28 16:13:24 +0900 |
commit | 55d29a8d48663982a1aeea414f69a5896b97d1ea (patch) | |
tree | baac13009d92054ba1d597e9da81dc0c3cbc8e65 /src/gallium/auxiliary/rtasm/rtasm_x86sse.h | |
parent | 96a40345bb3b7c87d9742d0b5683355f42596823 (diff) |
gallium: Windows CE portability fixes.
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_x86sse.h')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_x86sse.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h index eacaeeaf6fe..a5afa16395e 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h +++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h @@ -24,7 +24,9 @@ #ifndef _RTASM_X86SSE_H_ #define _RTASM_X86SSE_H_ -#if defined(__i386__) || defined(__386__) || defined(i386) +#include "pipe/p_config.h" + +#if defined(PIPE_ARCH_X86) /* It is up to the caller to ensure that instructions issued are * suitable for the host cpu. There are no checks made in this module |