summaryrefslogtreecommitdiff
path: root/sysdeps/x86_64/multiarch/strcasestr-c.c
blob: e6879531bc919f39b6b51c0306c7591989bb83b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "init-arch.h"

#define STRCASESTR __strcasestr_sse2
#undef libc_hidden_builtin_def
#define libc_hidden_builtin_def(name) \
  __hidden_ver1 (__strcasestr_sse2, __GI_strcasestr, __strcasestr_sse2);

#include "string/strcasestr.c"

extern char *__strcasestr_sse42 (const char *, const char *);

#if 1
libc_ifunc (__strcasestr,
	    HAS_SSE4_2 ? __strcasestr_sse42 : __strcasestr_sse2);
#else
libc_ifunc (__strcasestr,
	    0 ? __strcasestr_sse42 : __strcasestr_sse2);
#endif