Remove unnecessary ifdefs

mixer_sse.c and mixer_neon.c are only compiled when the relavent headers are
found anyway.
This commit is contained in:
Chris Robinson
2014-05-04 00:19:55 -07:00
parent a2bb4c3f13
commit db90985f6a
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -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"
-2
View File
@@ -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"