diff --git a/modules/imgproc/src/smooth.cpp b/modules/imgproc/src/smooth.cpp index 5eb4b388d6..df744effd4 100644 --- a/modules/imgproc/src/smooth.cpp +++ b/modules/imgproc/src/smooth.cpp @@ -1851,8 +1851,8 @@ static inline void histogram_add_simd( const HT x[16], HT y[16] ) static inline void histogram_sub_simd( const HT x[16], HT y[16] ) { - vst1q_u16(y, vsubq_u16(vld1q_u16(x), vld1q_u16(y))); - vst1q_u16(y + 8, vsubq_u16(vld1q_u16(x + 8), vld1q_u16(y + 8))); + vst1q_u16(y, vsubq_u16(vld1q_u16(y), vld1q_u16(x))); + vst1q_u16(y + 8, vsubq_u16(vld1q_u16(y + 8), vld1q_u16(x + 8))); } #else