summaryrefslogtreecommitdiff
path: root/src/mesa/x86/common_x86.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-01-06 12:19:40 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-01-06 12:19:40 +0000
commit20caac0967dbe73306d1f130bea561be411fc067 (patch)
tree8c4629479570b3c2b8248f48d3ef59becdbf1451 /src/mesa/x86/common_x86.c
parent38bf45d4bbc576a695a2f7bb7d9ae3caf28a6838 (diff)
SSE segfaults in conform - disable for now.
Diffstat (limited to 'src/mesa/x86/common_x86.c')
-rw-r--r--src/mesa/x86/common_x86.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c
index 9b28403cf3..b136180979 100644
--- a/src/mesa/x86/common_x86.c
+++ b/src/mesa/x86/common_x86.c
@@ -354,11 +354,11 @@ void _mesa_init_all_x86_transform_asm( void )
check_os_sse_support();
}
if ( cpu_has_xmm ) {
- if ( getenv( "MESA_NO_SSE" ) == 0 ) {
+ if ( 0 && getenv( "MESA_NO_SSE" ) == 0 ) {
message( "SSE cpu detected.\n" );
_mesa_init_sse_transform_asm();
} else {
- message( "SSE cpu detected, but switched off by user.\n" );
+/* message( "SSE cpu detected, but switched off by user.\n" ); */
_mesa_x86_cpu_features &= ~(X86_FEATURE_XMM);
}
}