found and solved very hard to track bug of intrinsic function palignr, that manifested only in Release builds and not Debug builds in a particular number of tests

This commit is contained in:
Apostolos Tapsas 2021-11-24 11:18:18 +00:00
parent 0287724413
commit e13bfec734

View File

@ -381,7 +381,7 @@ m128 palignr_imm(m128 r, m128 l, int offset) {
static really_really_inline
m128 palignr(m128 r, m128 l, int offset) {
#if defined(HS_OPTIMIZE)
return (m128)vec_sld((int8x16_t)l, (int8x16_t)r, offset);
return palignr_imm(r, l, offset);
#else
return palignr_imm(r, l, offset);
#endif