mirror of
https://github.com/mpv-player/mpv
synced 2024-12-16 03:45:23 +00:00
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
|