Skip to content

Commit

Permalink
Fix unused parameters warnings (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
anakinxc authored Sep 7, 2023
1 parent 274cbcb commit af87cc0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sse2neon.h
Original file line number Diff line number Diff line change
Expand Up @@ -8274,6 +8274,9 @@ FORCE_INLINE int _mm_cmpestrs(__m128i a,
int lb,
const int imm8)
{
(void) a;
(void) b;
(void) lb;
SSE2NEON_CMPSTR_SET_UPPER(bound, imm8);
return la <= (bound - 1);
}
Expand All @@ -8287,6 +8290,9 @@ FORCE_INLINE int _mm_cmpestrz(__m128i a,
int lb,
const int imm8)
{
(void) a;
(void) b;
(void) la;
SSE2NEON_CMPSTR_SET_UPPER(bound, imm8);
return lb <= (bound - 1);
}
Expand Down Expand Up @@ -8368,6 +8374,7 @@ FORCE_INLINE int _mm_cmpistro(__m128i a, __m128i b, const int imm8)
// https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_cmpistrs
FORCE_INLINE int _mm_cmpistrs(__m128i a, __m128i b, const int imm8)
{
(void) b;
SSE2NEON_CMPSTR_SET_UPPER(bound, imm8);
int la;
SSE2NEON_CMPISTRX_LENGTH(a, la, imm8);
Expand All @@ -8379,6 +8386,7 @@ FORCE_INLINE int _mm_cmpistrs(__m128i a, __m128i b, const int imm8)
// https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_cmpistrz
FORCE_INLINE int _mm_cmpistrz(__m128i a, __m128i b, const int imm8)
{
(void) a;
SSE2NEON_CMPSTR_SET_UPPER(bound, imm8);
int lb;
SSE2NEON_CMPISTRX_LENGTH(b, lb, imm8);
Expand Down

0 comments on commit af87cc0

Please sign in to comment.