Browse Source

remove SSE messages

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@4543 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.121.3
paul 13 years ago
parent
commit
ec62cf6f9a
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      libjack/client.c

+ 5
- 3
libjack/client.c View File

@@ -89,12 +89,14 @@ static void
init_cpu ()
{
cpu_type = ((have_3dnow() << 8) | have_sse());
#if 0
if (ARCH_X86_HAVE_3DNOW(cpu_type))
jack_log("Enhanced3DNow! detected");
jack_debug("Enhanced3DNow! detected");
if (ARCH_X86_HAVE_SSE2(cpu_type))
jack_log("SSE2 detected");
jack_debug("SSE2 detected");
if ((!ARCH_X86_HAVE_3DNOW(cpu_type)) && (!ARCH_X86_HAVE_SSE2(cpu_type)))
jack_log("No supported SIMD instruction sets detected");
jack_debug("No supported SIMD instruction sets detected");
#endif
jack_port_set_funcs();
}



Loading…
Cancel
Save