i386 and x86_64 versions already had the .text directive; other archs
did not. normally, top-level (file scope) __asm__ starts in the .text
section anyway, but problems were reported with some versions of
clang, and it seems preferable to set it explicitly anyway, at least
for the sake of consistency between archs.
__asm__(
+".text \n"
".global " START "\n"
".type " START ",%function\n"
START ":\n"
__asm__(
+".text \n"
".global " START " \n"
".type " START ",%function \n"
START ": \n"
__asm__(
+".text \n"
".global " START " \n"
".align 2 \n"
START ": \n"
__asm__(
".set push\n"
".set noreorder\n"
+".text \n"
".global _" START "\n"
".global " START "\n"
".type _" START ", @function\n"
__asm__(
+".text \n"
".global " START " \n"
".align 4 \n"
START ": \n"
__asm__(
+".text \n"
".global " START " \n"
".type " START ", %function \n"
START ": \n"
__asm__(
+".text \n"
".global " START " \n"
START ": \n"
" mova 1f, r0 \n"