aboutsummaryrefslogtreecommitdiff
path: root/src/zexy.h
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-01-19 14:56:40 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-01-19 14:56:40 +0000
commit4934f05ba8e55f58ed5762180ea317da50a00a05 (patch)
treed1568a29be25660351692ab6a11fc785b179b158 /src/zexy.h
parent6d3d4743b01e15a82444b2ca900b60094e3c1800 (diff)
SIMD code hopefully now also works on 64bit
svn path=/trunk/externals/zexy/; revision=13045
Diffstat (limited to 'src/zexy.h')
-rw-r--r--src/zexy.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/zexy.h b/src/zexy.h
index 33e9c7d..a56f868 100644
--- a/src/zexy.h
+++ b/src/zexy.h
@@ -50,16 +50,6 @@
#include "m_pd.h"
-#ifdef __SSE__
-# include <xmmintrin.h>
-# define Z_SIMD_BLOCK 16 /* must be a power of 2 */
-# define Z_SIMD_BYTEALIGN (128/8) /* assume 128 bits */
-# define Z_SIMD_CHKBLOCKSIZE(n) (!(n&(Z_SIMD_BLOCK-1)))
-# define Z_SIMD_CHKALIGN(ptr) ( ((unsigned long)(ptr) & (Z_SIMD_BYTEALIGN-1)) == 0 )
-#endif /* __SSE__ */
-
-#include <math.h>
-
#define VERSION "2.2.3"
/* these pragmas are only used for MSVC, not MinGW or Cygwin */
@@ -74,6 +64,7 @@
# define HEARTSYMBOL 64
#endif
+#include <math.h>
#ifdef __WIN32__
# define STATIC_INLINE