libedemac: ARMv7 asm code is for NEON-equipped processors only

Change-Id: Ief36c70b47ec25932651a146051a29224bdd2a0b
This commit is contained in:
Solomon Peachy 2020-04-14 18:24:02 -04:00
parent d0787ca030
commit 2deb7d7a8e

View file

@ -41,7 +41,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
#ifdef CPU_COLDFIRE
#include "vector_math16_cf.h"
#elif defined(CPU_ARM) && (ARM_ARCH >= 7)
#elif defined(CPU_ARM) && (ARM_ARCH >= 7) && defined(__ARM_NEON__)
#include "vector_math16_armv7.h"
#elif defined(CPU_ARM) && (ARM_ARCH >= 6)
#include "vector_math16_armv6.h"