From fa54f15135560231900bd9d1c9420af36c980e0d Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Mon, 23 Mar 2020 07:02:16 +0100 Subject: [PATCH] CMSIS-DSP: Corrected tail management bug in MVE version of arm_fir_f32.c --- Source/FilteringFunctions/arm_fir_f32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/FilteringFunctions/arm_fir_f32.c b/Source/FilteringFunctions/arm_fir_f32.c index 2f9632e5..bb2da425 100644 --- a/Source/FilteringFunctions/arm_fir_f32.c +++ b/Source/FilteringFunctions/arm_fir_f32.c @@ -314,6 +314,7 @@ static void arm_fir_f32_5_8_mve(const arm_fir_instance_f32 * S, const float32_t } blkCnt = blockSize & 3; + if (blkCnt > 0) { mve_pred16_t p0 = vctp32q(blkCnt);