diff options
author | Noah Goldstein <goldstein.w.n@gmail.com> | 2022-06-29 16:07:15 -0700 |
---|---|---|
committer | Noah Goldstein <goldstein.w.n@gmail.com> | 2022-06-29 19:47:52 -0700 |
commit | 21925f64730d52eb7d8b2fb62b412f8ab92b0caf (patch) | |
tree | fe440e8569e9faf8c365933e551cc5d688807fef /sysdeps/x86_64/multiarch/Makefile | |
parent | 4a3f29e7e475dd4e7cce2a24c187e6fb7b5b0a05 (diff) | |
download | glibc-21925f64730d52eb7d8b2fb62b412f8ab92b0caf.tar glibc-21925f64730d52eb7d8b2fb62b412f8ab92b0caf.tar.gz glibc-21925f64730d52eb7d8b2fb62b412f8ab92b0caf.tar.bz2 glibc-21925f64730d52eb7d8b2fb62b412f8ab92b0caf.zip |
x86: Move mem{p}{mov|cpy}_{chk_}erms to its own file
The primary memmove_{impl}_unaligned_erms implementations don't
interact with this function. Putting them in same file both
wastes space and unnecessarily bloats a hot code section.
Diffstat (limited to 'sysdeps/x86_64/multiarch/Makefile')
-rw-r--r-- | sysdeps/x86_64/multiarch/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/x86_64/multiarch/Makefile b/sysdeps/x86_64/multiarch/Makefile index 0525cef3fe..18cea04423 100644 --- a/sysdeps/x86_64/multiarch/Makefile +++ b/sysdeps/x86_64/multiarch/Makefile @@ -18,6 +18,7 @@ sysdep_routines += \ memmove-avx-unaligned-erms-rtm \ memmove-avx512-no-vzeroupper \ memmove-avx512-unaligned-erms \ + memmove-erms \ memmove-evex-unaligned-erms \ memmove-sse2-unaligned-erms \ memmove-ssse3 \ |