about summary refs log tree commit diff
path: root/sysdeps/aarch64/multiarch/memcpy.c
diff options
context:
space:
mode:
authorWilco Dijkstra <wdijkstr@arm.com>2020-07-15 16:58:07 +0100
committerWilco Dijkstra <wdijkstr@arm.com>2020-10-14 17:29:12 +0100
commit98979f62b88dc781e99db84744646f298fcea62f (patch)
tree485d74e406c90e89519cef20d67117ed25b0d088 /sysdeps/aarch64/multiarch/memcpy.c
parentfe09348c4e183e390f0a8b806a543f8860b62559 (diff)
downloadglibc-98979f62b88dc781e99db84744646f298fcea62f.tar.gz
glibc-98979f62b88dc781e99db84744646f298fcea62f.tar.xz
glibc-98979f62b88dc781e99db84744646f298fcea62f.zip
AArch64: Rename IS_ARES to IS_NEOVERSE_N1
Rename IS_ARES to IS_NEOVERSE_N1 since that is a bit clearer.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
(cherry picked from commit 0f6278a8793a5d04ea31878119eccf99f469a02d)
Diffstat (limited to 'sysdeps/aarch64/multiarch/memcpy.c')
-rw-r--r--sysdeps/aarch64/multiarch/memcpy.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/aarch64/multiarch/memcpy.c b/sysdeps/aarch64/multiarch/memcpy.c
index a6774f0d17..18b5f51543 100644
--- a/sysdeps/aarch64/multiarch/memcpy.c
+++ b/sysdeps/aarch64/multiarch/memcpy.c
@@ -41,7 +41,9 @@ libc_ifunc (__libc_memcpy,
 		? __memcpy_falkor
 		: (IS_THUNDERX2 (midr) || IS_THUNDERX2PA (midr)
 		  ? __memcpy_thunderx2
-		  : (IS_ARES (midr) ? __memcpy_simd : __memcpy_generic)))));
+		  : (IS_NEOVERSE_N1 (midr)
+		     ? __memcpy_simd
+		     : __memcpy_generic)))));
 
 # undef memcpy
 strong_alias (__libc_memcpy, memcpy);