mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 11:10:10 +01:00
check for __i386__ or __386__ instead of USE_X86_ASM
This commit is contained in:
parent
a06dcfd75b
commit
24ac9c30eb
1 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@
|
|||
#include "tgsi_core.h"
|
||||
#include "x86/rtasm/x86sse.h"
|
||||
|
||||
#ifdef USE_X86_ASM
|
||||
#if defined(__i386__) || defined(__386__)
|
||||
|
||||
#define DUMP_SSE 0
|
||||
|
||||
|
|
@ -2328,4 +2328,4 @@ tgsi_emit_sse2_fs(
|
|||
return 1;
|
||||
}
|
||||
|
||||
#endif /* USE_X86_ASM */
|
||||
#endif /* i386 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue