diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2020-07-15 16:58:07 +0100 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2020-10-14 15:57:02 +0100 |
commit | bea507a3f55604064e2305fdf71e80ee4f43c2d3 (patch) | |
tree | da00ddb0c5a35f4a8f93dcad7fc743f8d5df3648 /sysdeps/unix/sysv/linux | |
parent | d0a5b769027b17a7000ebc58e240ddd98ae0d719 (diff) | |
download | glibc-bea507a3f55604064e2305fdf71e80ee4f43c2d3.tar.gz glibc-bea507a3f55604064e2305fdf71e80ee4f43c2d3.tar.xz glibc-bea507a3f55604064e2305fdf71e80ee4f43c2d3.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/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/cpu-features.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/cpu-features.h b/sysdeps/unix/sysv/linux/aarch64/cpu-features.h index 1389cea1b3..6e86aee47a 100644 --- a/sysdeps/unix/sysv/linux/aarch64/cpu-features.h +++ b/sysdeps/unix/sysv/linux/aarch64/cpu-features.h @@ -51,8 +51,8 @@ #define IS_PHECDA(midr) (MIDR_IMPLEMENTOR(midr) == 'h' \ && MIDR_PARTNUM(midr) == 0x000) -#define IS_ARES(midr) (MIDR_IMPLEMENTOR(midr) == 'A' \ - && MIDR_PARTNUM(midr) == 0xd0c) +#define IS_NEOVERSE_N1(midr) (MIDR_IMPLEMENTOR(midr) == 'A' \ + && MIDR_PARTNUM(midr) == 0xd0c) #define IS_EMAG(midr) (MIDR_IMPLEMENTOR(midr) == 'P' \ && MIDR_PARTNUM(midr) == 0x000) |