From 8d1e297c35972657c59776c708becf74582786af Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Wed, 28 Apr 2021 07:08:34 +0200 Subject: [PATCH] CMSIS-DSP: Corrected build issue with MVE code with gcc (When building in debug mode) --- Include/arm_helium_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/arm_helium_utils.h b/Include/arm_helium_utils.h index 41a2308f..54a9db59 100755 --- a/Include/arm_helium_utils.h +++ b/Include/arm_helium_utils.h @@ -620,7 +620,7 @@ __STATIC_INLINE q31x4_t FAST_VSQRT_Q31(q31x4_t vecIn) vecSignBits = vclsq(vecIn); - vecSignBits = vbicq(vecSignBits, 1); + vecSignBits = vbicq_n_s32(vecSignBits, 1); /* * in = in << no_of_sign_bits; */