From 1603ac1783a7d0ad8d03f48d070594ac0981e3c6 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 19 Jan 2016 18:12:04 +0100 Subject: [PATCH] Take out ifdef around CPU NEON conditional --- performance.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/performance.c b/performance.c index cbe3a4e8c5..c3d74bef74 100644 --- a/performance.c +++ b/performance.c @@ -556,13 +556,14 @@ uint64_t retro_get_cpu_features(void) #elif defined(__linux__) cpu_flags = linux_get_cpu_features(); -#ifdef __ARM_NEON__ if (cpu_flags & CPU_ARM_FEATURE_NEON) { cpu |= RETRO_SIMD_NEON; +#ifdef __ARM_NEON__ arm_enable_runfast_mode(); - } #endif + } + if (cpu_flags & CPU_ARM_FEATURE_VFPv3) cpu |= RETRO_SIMD_VFPV3;