From a0fa802ee2b3a01c82fcd49c76cfbd61a6076203 Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Tue, 26 Apr 2022 14:46:02 +0200 Subject: [PATCH] CMSIS-DSP: Corrected build issue with Neon New arm_mse_f32 function was no more building. --- Source/StatisticsFunctions/arm_mse_f32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/StatisticsFunctions/arm_mse_f32.c b/Source/StatisticsFunctions/arm_mse_f32.c index 81af4a7e..1c592f50 100755 --- a/Source/StatisticsFunctions/arm_mse_f32.c +++ b/Source/StatisticsFunctions/arm_mse_f32.c @@ -115,6 +115,7 @@ void arm_mse_f32( float32x4_t vecA, vecB; float32x4_t vecSum; uint32_t blkCnt; + float32_t inA, inB; float32_t sum = 0.0f; vecSum = vdupq_n_f32(0.0f); #if !defined(__aarch64__)