Skip to content

Commit a6c5ac6

Browse files
committed
Changed argument type from int8x16_t to __m128i for type hinting.
1 parent eceb18c commit a6c5ac6

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
@@ -56,7 +56,7 @@ typedef int8x16_t __m128i;
5656
#define _mm_cmplt_epi8(a, b) (vreinterpretq_s8_u8(vcltq_s8(a, b)))
5757
#define _mm_cmpgt_epi8(a, b) (vreinterpretq_s8_u8(vcgtq_s8(a, b)))
5858

59-
static zend_always_inline int _mm_movemask_epi8(int8x16_t x)
59+
static zend_always_inline int _mm_movemask_epi8(__m128i x)
6060
{
6161
/**
6262
* based on code from

0 commit comments

Comments
 (0)