mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
clang is more strict
This commit is contained in:
parent
6b364021d1
commit
7cad514366
@ -667,7 +667,7 @@ TEST(SimdUtilsTest, movq) {
|
||||
simd = _mm_set_epi64x(~0LL, 0x123456789abcdef);
|
||||
#elif defined(ARCH_ARM32) || defined(ARCH_AARCH64)
|
||||
int64x2_t a = { 0x123456789abcdefLL, ~0LL };
|
||||
simd = vreinterpretq_s64_s8(a);
|
||||
simd = vreinterpretq_s32_s64(a);
|
||||
#elif defined(ARCH_PPC64EL)
|
||||
int64x2_t a = {0x123456789abcdefLL, ~0LL };
|
||||
simd = (m128) a;
|
||||
|
Loading…
x
Reference in New Issue
Block a user