Skip to content

Commit

Permalink
r233: fixed a typo on a NEON macro
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Apr 19, 2023
1 parent 0d48315 commit a4957ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion miniprot.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#define MP_VERSION "0.10-r232-dirty"
#define MP_VERSION "0.10-r233-dirty"

#define MP_F_NO_SPLICE 0x1
#define MP_F_NO_ALIGN 0x2
Expand Down
2 changes: 1 addition & 1 deletion nasw-sse.c
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ static inline __m128i ns_select(__m128i cond, __m128i a, __m128i b)

static inline int ns_max_8(__m128i a)
{
#if defined(__ARM_NEON__)
#if defined(__ARM_NEON)
return vmaxvq_s16(vreinterpretq_s16_u8(a));
#elif defined(__SSE2__)
a = _mm_max_epi16(a, _mm_srli_si128(a, 8));
Expand Down

0 comments on commit a4957ba

Please sign in to comment.