diff options
author | Stefan Liebler <stli@linux.ibm.com> | 2018-12-18 13:57:25 +0100 |
---|---|---|
committer | Stefan Liebler <stli@linux.ibm.com> | 2018-12-18 13:57:25 +0100 |
commit | 25654a8c74dce51e162c29749c6bd6d2a67490e6 (patch) | |
tree | 023e70d07af765f3cb72af8a741a681b985f5ae0 /sysdeps/s390/Makefile | |
parent | d2a7436c1c6144bbba2eb2a7b25db9b90515f0e6 (diff) | |
download | glibc-25654a8c74dce51e162c29749c6bd6d2a67490e6.tar glibc-25654a8c74dce51e162c29749c6bd6d2a67490e6.tar.gz glibc-25654a8c74dce51e162c29749c6bd6d2a67490e6.tar.bz2 glibc-25654a8c74dce51e162c29749c6bd6d2a67490e6.zip |
S390: Refactor wmemcmp ifunc handling.
The ifunc handling for wmemcmp is adjusted in order to omit ifunc
variants if those will never be used as the minimum architecture level
already supports newer CPUs by default.
ChangeLog:
* sysdeps/s390/multiarch/Makefile
(sysdep_routines): Remove wmemcmp variants.
* sysdeps/s390/Makefile (sysdep_routines): Add wmemcmp variants.
* sysdeps/s390/multiarch/ifunc-impl-list.c
(__libc_ifunc_impl_list): Refactor ifunc handling for wmemcmp.
* sysdeps/s390/multiarch/wmemcmp-c.c: Move to ...
* sysdeps/s390/wmemcmp-c.c: ... here and adjust ifunc handling.
* sysdeps/s390/multiarch/wmemcmp-vx.S: Move to ...
* sysdeps/s390/wmemcmp-vx.S: ... here and adjust ifunc handling.
* sysdeps/s390/multiarch/wmemcmp.c: Move to ...
* sysdeps/s390/wmemcmp.c: ... here and adjust ifunc handling.
* sysdeps/s390/ifunc-wmemcmp.h: New file.
Diffstat (limited to 'sysdeps/s390/Makefile')
-rw-r--r-- | sysdeps/s390/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/s390/Makefile b/sysdeps/s390/Makefile index ae2ae3d2ea..35fcf7e21d 100644 --- a/sysdeps/s390/Makefile +++ b/sysdeps/s390/Makefile @@ -100,5 +100,6 @@ sysdep_routines += wcslen wcslen-vx wcslen-c \ wcspbrk wcspbrk-vx wcspbrk-c \ wcscspn wcscspn-vx wcscspn-c \ wmemchr wmemchr-vx wmemchr-c \ - wmemset wmemset-vx wmemset-c + wmemset wmemset-vx wmemset-c \ + wmemcmp wmemcmp-vx wmemcmp-c endif |