diff options
author | Chris Robinson <[email protected]> | 2014-05-04 00:19:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-04 00:19:55 -0700 |
commit | db90985f6a0db8cbd97c2c1ece259eeba15f983b (patch) | |
tree | 659345ab000f99870e5700c7464856224217f3fc /Alc/mixer_sse.c | |
parent | a2bb4c3f1344ad5876181fd0c3131e018915276e (diff) |
Remove unnecessary ifdefs
mixer_sse.c and mixer_neon.c are only compiled when the relavent headers are
found anyway.
Diffstat (limited to 'Alc/mixer_sse.c')
-rw-r--r-- | Alc/mixer_sse.c | 2 |
1 files changed, 0 insertions, 2 deletions
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" |