diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2022-10-26 14:16:50 +0100 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2022-10-26 14:16:50 +0100 |
commit | e6f3fe362f1aab78b1448d69ecdbd9e3872636d3 (patch) | |
tree | a4b65f09b750d95e3e593b4114f1212aab09fabe /sysdeps/aarch64/multiarch/Makefile | |
parent | a8e72913fea0c6e2832c50523c60907ffa3b753b (diff) | |
download | glibc-e6f3fe362f1aab78b1448d69ecdbd9e3872636d3.tar.gz glibc-e6f3fe362f1aab78b1448d69ecdbd9e3872636d3.tar.xz glibc-e6f3fe362f1aab78b1448d69ecdbd9e3872636d3.zip |
aarch64: Use memcpy_simd as the default memcpy
Since __memcpy_simd is the fastest memcpy on almost all cores, replace the generic memcpy with it. If SVE is available, a SVE memcpy will be used by default (including for Neoverse N2).
Diffstat (limited to 'sysdeps/aarch64/multiarch/Makefile')
-rw-r--r-- | sysdeps/aarch64/multiarch/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sysdeps/aarch64/multiarch/Makefile b/sysdeps/aarch64/multiarch/Makefile index 16297192ee..223777d94e 100644 --- a/sysdeps/aarch64/multiarch/Makefile +++ b/sysdeps/aarch64/multiarch/Makefile @@ -3,7 +3,6 @@ sysdep_routines += \ memchr_generic \ memchr_nosimd \ memcpy_a64fx \ - memcpy_advsimd \ memcpy_falkor \ memcpy_generic \ memcpy_sve \ |