Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 74a2fd8

Browse files
committedApr 29, 2025··
fixed _mm_set_epi64 to _mm_set_epi64x
1 parent a6c5ac6 commit 74a2fd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Zend/zend_simd.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ typedef int8x16_t __m128i;
3838
(int16_t) (x3), (int16_t) (x2), (int16_t) (x1), (int16_t) (x0) })
3939
#define _mm_set_epi32(x0, x1, x2, x3) \
4040
vreinterpretq_s8_s32((int32x4_t) { (int32_t) (x3), (int32_t) (x2), (int32_t) (x1), (int32_t) (x0) })
41-
#define _mm_set_epi64(x0, x1) vreinterpretq_s8_s64((int64x2_t) { (int64_t) (x1), (int64_t) (x0) })
41+
#define _mm_set_epi64x(x0, x1) vreinterpretq_s8_s64((int64x2_t) { (int64_t) (x1), (int64_t) (x0) })
4242
#define _mm_load_si128(x) vld1q_s8((const int8_t *) (x))
4343
#define _mm_loadu_si128(x) _mm_load_si128(x)
4444
#define _mm_store_si128(to, x) vst1q_s8((int8_t *) (to), x)

0 commit comments

Comments
 (0)
Please sign in to comment.