diff options
author | Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com> | 2020-10-02 10:18:48 -0300 |
---|---|---|
committer | Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com> | 2021-02-17 13:38:29 -0300 |
commit | 569f620ecdc051d55d08a53494258a95cd345d91 (patch) | |
tree | d75f0a2756a90fcfe7da0f2badacda35b93613c6 /sysdeps/powerpc/powerpc64/multiarch/memcmp.c | |
parent | b50bbee77534c25c341c38702866b2cdf35f3494 (diff) | |
download | glibc-tuliom/microwatt.tar glibc-tuliom/microwatt.tar.gz glibc-tuliom/microwatt.tar.bz2 glibc-tuliom/microwatt.zip |
powerpc64: Stop assuming new processors have VSXtuliom/microwatt
VSX has been available on IBM POWER since POWER7. All IBM processors
compliant with POWER ISAs 2.07, 3.0 and 3.1 also support VSX.
This patch aims to remove a barrier for new processors as they start to
support Linux on powerpc64 while not having support for all the altivec
and vsx instructions.
Diffstat (limited to 'sysdeps/powerpc/powerpc64/multiarch/memcmp.c')
-rw-r--r-- | sysdeps/powerpc/powerpc64/multiarch/memcmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcmp.c b/sysdeps/powerpc/powerpc64/multiarch/memcmp.c index 6fd53267b6..a4080f66a6 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcmp.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memcmp.c @@ -32,7 +32,8 @@ extern __typeof (memcmp) __memcmp_power8 attribute_hidden; /* Avoid DWARF definition DIE on ifunc symbol so that GDB can handle ifunc symbol properly. */ libc_ifunc_redirected (__redirect_memcmp, memcmp, - (hwcap2 & PPC_FEATURE2_ARCH_2_07) + (hwcap2 & PPC_FEATURE2_ARCH_2_07 + && hwcap & PPC_FEATURE_HAS_VSX) ? __memcmp_power8 : (hwcap & PPC_FEATURE_HAS_VSX) ? __memcmp_power7 |