diff options
author | Xuelei Zhang <zhangxuelei4@huawei.com> | 2019-12-27 11:58:19 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2019-12-27 11:59:51 -0300 |
commit | 10df95cdaf049e77fa84a71359e210e74901057d (patch) | |
tree | 2a3684a1e19c8584de2381de3c19223b65bf751e /sysdeps/unix/sysv/linux/aarch64/cpu-features.h | |
parent | 64297d49b37f637a82faedd16bf8860e0ab31606 (diff) | |
download | glibc-10df95cdaf049e77fa84a71359e210e74901057d.tar.gz glibc-10df95cdaf049e77fa84a71359e210e74901057d.tar.xz glibc-10df95cdaf049e77fa84a71359e210e74901057d.zip |
aarch64: ifunc rename for kunpeng
Rename ifunc for kunpeng to kunpeng920, and modify the corresponding function files including IS_KUNPENG920 judgement. Checked on aarch64-linux-gnu.
Diffstat (limited to 'sysdeps/unix/sysv/linux/aarch64/cpu-features.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/cpu-features.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/cpu-features.h b/sysdeps/unix/sysv/linux/aarch64/cpu-features.h index 87c4995627..176c71cf50 100644 --- a/sysdeps/unix/sysv/linux/aarch64/cpu-features.h +++ b/sysdeps/unix/sysv/linux/aarch64/cpu-features.h @@ -57,7 +57,7 @@ #define IS_EMAG(midr) (MIDR_IMPLEMENTOR(midr) == 'P' \ && MIDR_PARTNUM(midr) == 0x000) -#define IS_KUNPENG(midr) (MIDR_IMPLEMENTOR(midr) == 'H' \ +#define IS_KUNPENG920(midr) (MIDR_IMPLEMENTOR(midr) == 'H' \ && MIDR_PARTNUM(midr) == 0xd01) struct cpu_features |