fix movq and load_m128_from_u64a and resp. test for NEON

This commit is contained in:
Konstantinos Margaritis
2020-12-03 19:27:38 +02:00
parent 259c2572c1
commit 38477b08bc
2 changed files with 3 additions and 3 deletions

View File

@@ -667,7 +667,7 @@ TEST(SimdUtilsTest, movq) {
#if defined(ARCH_IA32) || defined(ARCH_X86_64)
simd = _mm_set_epi64x(~0LL, 0x123456789abcdef);
#elif defined(ARCH_ARM32) || defined(ARCH_AARCH64)
int64x2_t a = { ~0LL, 0x123456789abcdefLL };
int64x2_t a = { 0x123456789abcdefLL, ~0LL };
simd = vreinterpretq_s64_s8(a);
#endif
#endif