about summary refs log tree commit diff
path: root/sysdeps/x86_64/multiarch/wcslen.c
diff options
context:
space:
mode:
authorNoah Goldstein <goldstein.w.n@gmail.com>2021-06-23 01:19:34 -0400
committerNoah Goldstein <goldstein.w.n@gmail.com>2021-06-23 14:12:36 -0400
commit6f573a27b6c8b4236445810a44660612323f5a73 (patch)
tree3159bf94549e7e2e0458c05e9b992321b7c67026 /sysdeps/x86_64/multiarch/wcslen.c
parenta0db678071c60b6c47c468d231dd0b3694ba7a98 (diff)
downloadglibc-6f573a27b6c8b4236445810a44660612323f5a73.tar.gz
glibc-6f573a27b6c8b4236445810a44660612323f5a73.tar.xz
glibc-6f573a27b6c8b4236445810a44660612323f5a73.zip
x86-64: Add wcslen optimize for sse4.1
No bug. This comment adds the ifunc / build infrastructure
necessary for wcslen to prefer the sse4.1 implementation
in strlen-vec.S. test-wcslen.c is passing.

Signed-off-by: Noah Goldstein <goldstein.w.n@gmail.com>
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'sysdeps/x86_64/multiarch/wcslen.c')
-rw-r--r--sysdeps/x86_64/multiarch/wcslen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/x86_64/multiarch/wcslen.c b/sysdeps/x86_64/multiarch/wcslen.c
index f89bed42a0..3032061d3b 100644
--- a/sysdeps/x86_64/multiarch/wcslen.c
+++ b/sysdeps/x86_64/multiarch/wcslen.c
@@ -24,7 +24,7 @@
 # undef __wcslen
 
 # define SYMBOL_NAME wcslen
-# include "ifunc-avx2.h"
+# include "ifunc-wcslen.h"
 
 libc_ifunc_redirected (__redirect_wcslen, __wcslen, IFUNC_SELECTOR ());
 weak_alias (__wcslen, wcslen);