diff options
author | José Fonseca <[email protected]> | 2008-02-19 18:57:25 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-02-19 18:57:25 +0900 |
commit | 5480a6bc13a555f99a89fc801cfe153182697dda (patch) | |
tree | 60021b448477eaf564b52618e2c5913ade5638e6 /src/gallium/auxiliary/rtasm/rtasm_x86sse.h | |
parent | b62f0ddd09f8ef9c400feca321412b3f0bc77e63 (diff) |
Fix windows build.
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_x86sse.h')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_x86sse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h index e4576001bf5..606b41eb358 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h +++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h @@ -24,7 +24,7 @@ #ifndef _RTASM_X86SSE_H_ #define _RTASM_X86SSE_H_ -#if defined(__i386__) || defined(__386__) +#if defined(__i386__) || defined(__386__) || defined(i386) /* 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 |