Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14134/src
Modified Files: Tag: devel_0_39 m_simd.h Log Message: fix for 64-bit architectures
Index: m_simd.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/m_simd.h,v retrieving revision 1.1.4.1 retrieving revision 1.1.4.1.2.1 diff -C2 -d -r1.1.4.1 -r1.1.4.1.2.1 *** m_simd.h 5 Nov 2004 13:33:19 -0000 1.1.4.1 --- m_simd.h 19 Jul 2006 10:04:59 -0000 1.1.4.1.2.1 *************** *** 58,62 **** #define SIMD_CHKCNT(n) ( ((n)&(SIMD_BLOCK-1)) == 0 ) /* check if a pointer is correctly aligned for SIMD codelets */ ! #define SIMD_CHKALIGN(ptr) ( ((unsigned long)(ptr) & (SIMD_BYTEALIGN-1)) == 0 )
#endif --- 58,62 ---- #define SIMD_CHKCNT(n) ( ((n)&(SIMD_BLOCK-1)) == 0 ) /* check if a pointer is correctly aligned for SIMD codelets */ ! #define SIMD_CHKALIGN(ptr) ( ((size_t)(ptr) & (SIMD_BYTEALIGN-1)) == 0 )
#endif