Commit 4fdf4d92 authored by Evan Nemerson's avatar Evan Nemerson

mmx: fix NEON implementation of _mm_srai_pi16

There was a missing closing parenthesis.  It wasn't caught before
since we prefer the vector extension version, and most compilers
which support NEON also support vector extensions.
parent 51095ccc
......@@ -1775,7 +1775,7 @@ simde_mm_srai_pi16 (simde__m64 a, int count) {
#if defined(SIMDE_VECTOR_SUBSCRIPT_SCALAR)
r_.i16 = a_.i16 >> (count & 0xff);
#elif defined(SIMDE_ARM_NEON_A32V7_NATIVE)
r_.neon_i16 = vshl_s16(a_.neon_i16, vmov_n_s16(-HEDLEY_STATIC_CAST(int16_t, count));
r_.neon_i16 = vshl_s16(a_.neon_i16, vmov_n_s16(-HEDLEY_STATIC_CAST(int16_t, count)));
#elif defined(SIMDE_MIPS_LOONGSON_MMI_NATIVE)
r_.mmi_i16 = psrah_s(a_.mmi_i16, count);
#else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment