mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Take out ifdef around CPU NEON conditional
This commit is contained in:
parent
33b41e9aea
commit
1603ac1783
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue