mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-29 19:24:25 +03:00
add arm vector types in union, avoid -flax-conversions, fix castings
This commit is contained in:
committed by
Konstantinos Margaritis
parent
35a25fffd7
commit
7b65b298c1
@@ -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);
|
||||
#endif
|
||||
#endif
|
||||
r = movq(simd);
|
||||
|
Reference in New Issue
Block a user