mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
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:
parent
0287724413
commit
e13bfec734
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user