annotate asmalign.h @ 18104:7b408d60de9e

add support for intel mac. mp3lib is not fixed yet.
author nplourde
date Sat, 15 Apr 2006 20:46:54 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18104
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
1 #ifdef SYS_DARWIN
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
2 #define ASMALIGN8 ".align 3\n\t"
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
3 #define ASMALIGN16 ".align 4\n\t"
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
4 #else
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
5 #define ASMALIGN8 ".balign 8\n\t"
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
6 #define ASMALIGN16 ".balign 16\n\t"
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
7 #endif