about summary refs log tree commit diff
path: root/sysdeps/s390/Makefile
diff options
context:
space:
mode:
authorStefan Liebler <stli@linux.ibm.com>2018-12-18 13:57:09 +0100
committerStefan Liebler <stli@linux.ibm.com>2018-12-18 13:57:09 +0100
commit8c25dddd2e32bce47dfe01ca51c8aab535dbe23d (patch)
tree31a8c2d5200860111d1ab6be8e0cc721367cd79c /sysdeps/s390/Makefile
parentcdd927d98cc38acf55e1c6594b5c9451df8f239f (diff)
downloadglibc-8c25dddd2e32bce47dfe01ca51c8aab535dbe23d.tar.gz
glibc-8c25dddd2e32bce47dfe01ca51c8aab535dbe23d.tar.xz
glibc-8c25dddd2e32bce47dfe01ca51c8aab535dbe23d.zip
S390: Add z13 strstr ifunc variant.
The new vector variant of strstr is using the common code
implementation, but instead of calling the default
str* / mem* functions, the vector variants are called.

ChangeLog:

	* sysdeps/s390/Makefile (sysdep_routines): Add strstr variants.
	* sysdeps/s390/multiarch/ifunc-impl-list.c
	(__libc_ifunc_impl_list): Add ifunc variants for strstr.
	* sysdeps/s390/ifunc-strstr.h: New file.
	* sysdeps/s390/strstr.c: Likewise.
	* sysdeps/s390/strstr-c.c: Likewise.
	* sysdeps/s390/strstr-vx.c: Likewise.
Diffstat (limited to 'sysdeps/s390/Makefile')
-rw-r--r--sysdeps/s390/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/s390/Makefile b/sysdeps/s390/Makefile
index 859f36f249..c886fe31f3 100644
--- a/sysdeps/s390/Makefile
+++ b/sysdeps/s390/Makefile
@@ -57,5 +57,6 @@ ifeq ($(subdir),string)
 sysdep_routines += bzero memset memset-z900 \
 		   memcmp memcmp-z900 \
 		   mempcpy memcpy memcpy-z900 \
-		   memmove memmove-c
+		   memmove memmove-c \
+		   strstr strstr-vx strstr-c
 endif