WIP: Power VSX support almost completed

This commit is contained in:
Apostolos Tapsas
2021-10-14 10:33:10 +00:00
committed by apostolos
parent 2231f7c024
commit 7888dd4418
3 changed files with 254 additions and 381 deletions

View File

@@ -668,6 +668,9 @@ TEST(SimdUtilsTest, movq) {
#elif defined(ARCH_ARM32) || defined(ARCH_AARCH64)
int64x2_t a = { 0x123456789abcdefLL, ~0LL };
simd = vreinterpretq_s64_s8(a);
#elif defined(ARCH_PPC64EL)
int64x2_t a = {0x123456789abcdefLL, ~0LL };
simd = (m128) a;
#endif
#endif
r = movq(simd);