1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

Remove leftover fcvtns assembly

Nothing in the history justifies this. It can trigger some memory
sanitizer that do not support raw assembly.
This commit is contained in:
Vincent Rabaud
2026-06-23 09:20:19 +02:00
parent 81621ced10
commit b8e82fa2c2
@@ -2252,14 +2252,7 @@ inline v_int32x4 v_round(const v_float32x4& a)
{
float32x4_t a_ = a.val;
int32x4_t result;
#if defined _MSC_VER
result = vcvtnq_s32_f32(a_);
#else
__asm__ ("fcvtns %0.4s, %1.4s"
: "=w"(result)
: "w"(a_)
: /* No clobbers */);
#endif
return v_int32x4(result);
}
#else