summaryrefslogtreecommitdiffstats
path: root/asmalign.h
blob: 45a59cdaa7beae6ac51cccb9ec528a38c8ab8e22 (plain)
1
2
3
4
5
6
7
#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