diff options
Diffstat (limited to 'volk/tmpl/volk_cpu.tmpl.c')
-rw-r--r-- | volk/tmpl/volk_cpu.tmpl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/volk/tmpl/volk_cpu.tmpl.c b/volk/tmpl/volk_cpu.tmpl.c index dc24309f7..c278afc2e 100644 --- a/volk/tmpl/volk_cpu.tmpl.c +++ b/volk/tmpl/volk_cpu.tmpl.c @@ -77,7 +77,7 @@ static inline unsigned int cpuid_edx(unsigned int op) { #endif static int has_neon(void){ -#ifdef LOOK_FOR_NEON +#if defined(LOOK_FOR_NEON) FILE *auxvec_f; unsigned long auxvec[2]; unsigned int found_neon = 0; @@ -97,6 +97,7 @@ static int has_neon(void){ #else return 0; +#endif } static int has_ppc(void){ |