1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #29367 from vrabaud:persistence

Remove leftover fcvtns assembly
This commit is contained in:
Alexander Smorkalov
2026-06-23 12:38:32 +03:00
committed by GitHub
@@ -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