Enable codegen based whenever __i386__ is defined.

This commit is contained in:
Keith Whitwell
2007-09-26 12:46:45 +01:00
parent 035a824730
commit 65e3af51ef
8 changed files with 15 additions and 27 deletions

View File

@@ -53,7 +53,7 @@ struct st_fragment_program
/** The program in TGSI format */
struct tgsi_token tokens[ST_FP_MAX_TOKENS];
#if defined(USE_X86_ASM) || defined(SLANG_X86)
#if defined(__i386__) || defined(__386__)
struct x86_function sse2_program;
#endif
@@ -79,7 +79,7 @@ struct st_vertex_program
/** The program in TGSI format */
struct tgsi_token tokens[ST_FP_MAX_TOKENS];
#if defined(USE_X86_ASM) || defined(SLANG_X86)
#if defined(__i386__) || defined(__386__)
struct x86_function sse2_program;
#endif