annotate asmalign.h @ 18756:9368c4bd503b

full update, patch by Tuncer Altay, tunceraltay (at) yahoo.com, relayed by ismail d«Ónmez, On the behalf of Pardus Linux Team
author gpoirier
date Mon, 19 Jun 2006 20:06:24 +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