Commit 33c4480d authored by M-HT's avatar M-HT Committed by Michael R. Crusoe

Remove non-working MMX specialization from simde_vmin_s16

parent 6f4afd63
...@@ -159,14 +159,10 @@ simde_vmin_s16(simde_int16x4_t a, simde_int16x4_t b) { ...@@ -159,14 +159,10 @@ simde_vmin_s16(simde_int16x4_t a, simde_int16x4_t b) {
a_ = simde_int16x4_to_private(a), a_ = simde_int16x4_to_private(a),
b_ = simde_int16x4_to_private(b); b_ = simde_int16x4_to_private(b);
#if defined(SIMDE_X86_MMX_NATIVE) SIMDE_VECTORIZE
r_.m64 = _mm_sub_pi16(a_.m64, _mm_subs_pu16(b_.m64)); for (size_t i = 0 ; i < (sizeof(r_.values) / sizeof(r_.values[0])) ; i++) {
#else r_.values[i] = (a_.values[i] < b_.values[i]) ? a_.values[i] : b_.values[i];
SIMDE_VECTORIZE }
for (size_t i = 0 ; i < (sizeof(r_.values) / sizeof(r_.values[0])) ; i++) {
r_.values[i] = (a_.values[i] < b_.values[i]) ? a_.values[i] : b_.values[i];
}
#endif
return simde_int16x4_from_private(r_); return simde_int16x4_from_private(r_);
#endif #endif
......
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