aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/powerpc/powerpc64/multiarch/memcpy.c
diff options
context:
space:
mode:
authorTulio Magno Quites Machado Filho <tuliom@linux.ibm.com>2020-10-02 10:18:48 -0300
committerTulio Magno Quites Machado Filho <tuliom@linux.ibm.com>2021-02-17 13:38:29 -0300
commit569f620ecdc051d55d08a53494258a95cd345d91 (patch)
treed75f0a2756a90fcfe7da0f2badacda35b93613c6 /sysdeps/powerpc/powerpc64/multiarch/memcpy.c
parentb50bbee77534c25c341c38702866b2cdf35f3494 (diff)
downloadglibc-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/memcpy.c')
-rw-r--r--sysdeps/powerpc/powerpc64/multiarch/memcpy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcpy.c b/sysdeps/powerpc/powerpc64/multiarch/memcpy.c
index 5733192932..a67be8c00a 100644
--- a/sysdeps/powerpc/powerpc64/multiarch/memcpy.c
+++ b/sysdeps/powerpc/powerpc64/multiarch/memcpy.c
@@ -38,7 +38,8 @@ extern __typeof (__redirect_memcpy) __memcpy_power7 attribute_hidden;
extern __typeof (__redirect_memcpy) __memcpy_power8_cached attribute_hidden;
libc_ifunc (__libc_memcpy,
- ((hwcap2 & PPC_FEATURE2_ARCH_2_07) && use_cached_memopt)
+ ((hwcap2 & PPC_FEATURE2_ARCH_2_07 && hwcap & PPC_FEATURE_HAS_VSX)
+ && use_cached_memopt)
? __memcpy_power8_cached :
(hwcap & PPC_FEATURE_HAS_VSX)
? __memcpy_power7 :