From 1464ad53f79d09c796a7b6abd136f4370fc84494 Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Mon, 20 Apr 2020 11:52:54 +0200 Subject: [PATCH] CMSIS-DSP: Corrected a bug. arm_mve.h was not included in all cases since the introduction of the automatic MVE detection and the autovectorization test. --- Include/arm_math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/arm_math.h b/Include/arm_math.h index 34e2686e..9a0611a0 100644 --- a/Include/arm_math.h +++ b/Include/arm_math.h @@ -431,7 +431,7 @@ extern "C" #endif #endif -#if defined (ARM_MATH_HELIUM) || defined(ARM_MATH_MVEF) || defined(ARM_MATH_MVEI) +#if __ARM_FEATURE_MVE #include #endif