mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-16 09:21:52 +03:00
add arm vector types in union, avoid -flax-conversions, fix castings
This commit is contained in:
committed by
Konstantinos Margaritis
parent
9f7b2fa8a8
commit
5e59b36634
@@ -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