annotate asmalign.h @ 18452:ec506ccd190f

Disable mediaLib by default due to brokenness. patch by Derek E. Lewis dlewis%%@%%solnetworks%%.%%net
author diego
date Fri, 12 May 2006 08:33:30 +0000
parents 7b408d60de9e
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