diff options
author | Stefan Liebler <stli@linux.ibm.com> | 2018-12-18 13:57:17 +0100 |
---|---|---|
committer | Stefan Liebler <stli@linux.ibm.com> | 2018-12-18 13:57:17 +0100 |
commit | 89bfcbdf9d3d36eff0d544f655991149a7ae680b (patch) | |
tree | 6e088f94fdca1c5fee42e0ed5dfed5c02b12e228 /sysdeps/s390/multiarch/Makefile | |
parent | 196655ba54ebdcdcc0468bcb6e136757b013d350 (diff) | |
download | glibc-89bfcbdf9d3d36eff0d544f655991149a7ae680b.tar glibc-89bfcbdf9d3d36eff0d544f655991149a7ae680b.tar.gz glibc-89bfcbdf9d3d36eff0d544f655991149a7ae680b.tar.bz2 glibc-89bfcbdf9d3d36eff0d544f655991149a7ae680b.zip |
S390: Refactor memrchr ifunc handling.
The ifunc handling for memrchr 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 memrchr variants.
* sysdeps/s390/Makefile (sysdep_routines): Add memrchr variants.
* sysdeps/s390/multiarch/ifunc-impl-list.c
(__libc_ifunc_impl_list): Refactor ifunc handling for memrchr.
* sysdeps/s390/multiarch/memrchr-c.c: Move to ...
* sysdeps/s390/memrchr-c.c: ... here and adjust ifunc handling.
* sysdeps/s390/multiarch/memrchr-vx.S: Move to ...
* sysdeps/s390/memrchr-vx.S: ... here and adjust ifunc handling.
* sysdeps/s390/multiarch/memrchr.c: Move to ...
* sysdeps/s390/memrchr.c: ... here and adjust ifunc handling.
* sysdeps/s390/ifunc-memrchr.h: New file.
Diffstat (limited to 'sysdeps/s390/multiarch/Makefile')
-rw-r--r-- | sysdeps/s390/multiarch/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sysdeps/s390/multiarch/Makefile b/sysdeps/s390/multiarch/Makefile index d5a32fc309..260b514936 100644 --- a/sysdeps/s390/multiarch/Makefile +++ b/sysdeps/s390/multiarch/Makefile @@ -1,7 +1,3 @@ -ifeq ($(subdir),string) -sysdep_routines += memrchr memrchr-vx memrchr-c -endif - ifeq ($(subdir),wcsmbs) sysdep_routines += wcslen wcslen-vx wcslen-c \ wcsnlen wcsnlen-vx wcsnlen-c \ |