view asmalign.h @ 18503:abf8944d7db1

Add checks for 3DNow! and SSE compiler intrinsics to be used with FFmpeg. based on patch by Zuxy Meng zuxy(.)meng(@)gmail(.)com
author diego
date Sun, 14 May 2006 12:27:11 +0000
parents 7b408d60de9e
children
line wrap: on
line source

#ifdef SYS_DARWIN
#define ASMALIGN8  ".align 3\n\t"
#define ASMALIGN16 ".align 4\n\t"
#else
#define ASMALIGN8  ".balign 8\n\t"
#define ASMALIGN16 ".balign 16\n\t"
#endif