diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2007-11-06 10:16:34 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2007-11-06 10:16:34 +0100 |
commit | 0ab2c84ce95cea5c72aa4e9680862bf82d31259d (patch) | |
tree | eeb8de873e44c03ba1526910f9041c01693aef3c | |
parent | c6499a741c99394e81d1d86ffd066f3d9749875c (diff) |
Fix non-x86 build.
-rwxr-xr-x | src/mesa/pipe/tgsi/exec/tgsi_sse2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c index bc20d9ca05..a5c6e1a33a 100755 --- a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c +++ b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c @@ -29,6 +29,8 @@ #include "tgsi_core.h" #include "x86/rtasm/x86sse.h" +#ifdef USE_X86_ASM + #define DUMP_SSE 0 #if DUMP_SSE @@ -2325,3 +2327,5 @@ tgsi_emit_sse2_fs( return 1; } + +#endif /* USE_X86_ASM */ |