From: Andreas Schwab Date: Thu, 19 Aug 2010 14:42:16 +0000 (-0700) Subject: Fix ifunc thunk for strspn on x86 in static libc X-Git-Tag: glibc-2.13~149 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bdaa77bc20bbaf5a78da541b993cfead8b8c1b1c;p=thirdparty%2Fglibc.git Fix ifunc thunk for strspn on x86 in static libc --- diff --git a/ChangeLog b/ChangeLog index c59375123d7..d2d7b4a56d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-08-19 Andreas Schwab + + * sysdeps/i386/i686/multiarch/strspn.S [!SHARED]: Fix SSE4.2 check. + 2010-08-19 Luis Machado * sysdeps/powerpc/powerpc32/power7/memchr.S: New file. diff --git a/sysdeps/i386/i686/multiarch/strspn.S b/sysdeps/i386/i686/multiarch/strspn.S index 7fe6f97f419..dbdf1af4822 100644 --- a/sysdeps/i386/i686/multiarch/strspn.S +++ b/sysdeps/i386/i686/multiarch/strspn.S @@ -1,5 +1,5 @@ /* Multiple versions of strspn - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009,2010 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. @@ -65,7 +65,7 @@ ENTRY(strspn) jne 1f call __init_cpu_features 1: leal __strspn_ia32, %eax - testl $index_SSE2, CPUID_OFFSET+index_SSE4_2+__cpu_features + testl $bit_SSE4_2, CPUID_OFFSET+index_SSE4_2+__cpu_features jz 2f leal __strspn_sse42, %eax 2: ret