OSDN Git Service

Fixup powerpc syscalls to eliminate warnings with gcc-3.2, and fix
[uclinux-h8/uClibc.git] / ldso / ldso / powerpc / dl-startup.h
index ae7939e..615db69 100644 (file)
@@ -5,16 +5,15 @@
 /* Overrive the default _dl_boot function, and replace it with a bit of asm.
  * Then call the real _dl_boot function, which is now named _dl_boot2. */
 
-asm("\
-.text
-.globl _dl_boot
-_dl_boot:
-       mr      3,1
-       addi    1,1,-16
-
-       bl      _dl_boot2
-.previous\n\
-");
+asm("" \
+"      .text\n"                        \
+"      .globl  _dl_boot\n"             \
+"_dl_boot:\n"                          \
+"      mr      3,1\n"                  \
+"      addi    1,1,-16\n"              \
+"      bl      _dl_boot2\n"            \
+".previous\n"                          \
+);
 
 #define _dl_boot _dl_boot2
 #define LD_BOOT(X)   static void *  __attribute__ ((unused)) _dl_boot (X)