1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-02 16:20:39 +00:00

fix asimd detection

This commit is contained in:
Henri Gomez 2016-10-18 17:18:33 +02:00
parent eaed1c96be
commit a2274d45be

@ -704,7 +704,7 @@ uint64_t cpu_features_get(void)
if (check_arm_cpu_feature("vfpv4")) if (check_arm_cpu_feature("vfpv4"))
cpu |= RETRO_SIMD_VFPV4; cpu |= RETRO_SIMD_VFPV4;
if (check_arm_cpu_feature("asymd")) if (check_arm_cpu_feature("asimd"))
{ {
cpu |= RETRO_SIMD_ASIMD; cpu |= RETRO_SIMD_ASIMD;
#ifdef __ARM_NEON__ #ifdef __ARM_NEON__