Fix IA-32 strstr in multiarch configuration as well.

This commit is contained in:
Ulrich Drepper 2009-09-03 06:44:22 -07:00
parent 01034d7590
commit 04ef416adc
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-09-03 Ulrich Drepper <drepper@redhat.com>
* sysdeps/i386/i686/multiarch/strstr-c.c (__strstr_sse42,
__strstr_ia32): Add attribute_hidden.
2009-09-01 Andreas Schwab <schwab@redhat.com>
* hesiod/nss_hesiod/hesiod-grp.c (internal_gid_from_group): Fix

View File

@ -7,6 +7,7 @@
#include "string/strstr.c"
extern char *__strstr_sse42 (const char *, const char *);
extern char *__strstr_sse42 (const char *, const char *) attribute_hidden;
extern __typeof (__strstr_ia32) __strstr_ia32 attribute_hidden;
libc_ifunc (strstr, HAS_SSE4_2 ? __strstr_sse42 : __strstr_ia32);