Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unused parameters warning #610

Merged
merged 2 commits into from
Sep 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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