diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-09-20 20:18:00 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-09-20 20:18:00 -0700 |
commit | 015a4c6193366998683c69190d6e415e1a1ebe6e (patch) | |
tree | 8f1a6f77f888228c6215a8075c7692d05a69f6a3 /sysdeps | |
parent | 8ffcee4a049b244e369e371536486a9b2eabb25f (diff) | |
download | glibc-015a4c6193366998683c69190d6e415e1a1ebe6e.tar.gz glibc-015a4c6193366998683c69190d6e415e1a1ebe6e.tar.xz glibc-015a4c6193366998683c69190d6e415e1a1ebe6e.zip |
Re-enable all strncasecmp versions.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/x86_64/multiarch/strcmp.S | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/x86_64/multiarch/strcmp.S b/sysdeps/x86_64/multiarch/strcmp.S index 19776435f2..54e5bbc31d 100644 --- a/sysdeps/x86_64/multiarch/strcmp.S +++ b/sysdeps/x86_64/multiarch/strcmp.S @@ -125,14 +125,12 @@ ENTRY(__strncasecmp) jne 1f call __init_cpu_features 1: -#if 0 leaq __strncasecmp_sse42(%rip), %rax testl $bit_SSE4_2, __cpu_features+CPUID_OFFSET+index_SSE4_2(%rip) jnz 2f leaq __strncasecmp_ssse3(%rip), %rax testl $bit_SSSE3, __cpu_features+CPUID_OFFSET+index_SSSE3(%rip) jnz 2f -#endif leaq __strncasecmp_sse2(%rip), %rax 2: ret END(__strncasecmp) |