mirror of https://github.com/mpv-player/mpv
8 lines
170 B
C
8 lines
170 B
C
|
#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
|