Skip to content

Commit d41b20b

Browse files
committed
Merge pull request opencv#17830 from alalek:fix_17815
2 parents c5f540e + 36da867 commit d41b20b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/features2d/src/sift.simd.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ void calcSIFTDescriptor(
651651
v_float32 v_rco011 = v_rc01*obin, v_rco010 = v_rc01 - v_rco011;
652652
v_float32 v_rco001 = v_rc00*obin, v_rco000 = v_rc00 - v_rco001;
653653

654-
v_int32 idx = v_fma(v_fma(r0+__1, __d_plus_2, c0+__1), __n_plus_2, o0);
654+
v_int32 idx = v_muladd(v_muladd(r0+__1, __d_plus_2, c0+__1), __n_plus_2, o0);
655655
v_store_aligned(idx_buf, idx);
656656

657657
v_store_aligned(rco_buf, v_rco000);

0 commit comments

Comments
 (0)