diff options
-rw-r--r-- | Alc/mixer_neon.c | 2 | ||||
-rw-r--r-- | Alc/mixer_sse.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/Alc/mixer_neon.c b/Alc/mixer_neon.c index 0fa80939..cd3f4574 100644 --- a/Alc/mixer_neon.c +++ b/Alc/mixer_neon.c @@ -1,8 +1,6 @@ #include "config.h" -#ifdef HAVE_ARM_NEON_H #include <arm_neon.h> -#endif #include "AL/al.h" #include "AL/alc.h" diff --git a/Alc/mixer_sse.c b/Alc/mixer_sse.c index 645053d9..e8bc6076 100644 --- a/Alc/mixer_sse.c +++ b/Alc/mixer_sse.c @@ -1,6 +1,5 @@ #include "config.h" -#ifdef HAVE_XMMINTRIN_H #ifdef IN_IDE_PARSER /* KDevelop's parser won't recognize these defines that get added by the -msse * switch used to compile this source. Without them, xmmintrin.h fails to @@ -9,7 +8,6 @@ #define __SSE__ #endif #include <xmmintrin.h> -#endif #include "AL/al.h" #include "AL/alc.h" |