summaryrefslogtreecommitdiff
path: root/ldso/ldso/cris/dl-startup.h
diff options
context:
space:
mode:
authorTobias Anderberg <tobias.anderberg@axis.com>2003-08-27 12:59:23 +0000
committerTobias Anderberg <tobias.anderberg@axis.com>2003-08-27 12:59:23 +0000
commit7f8820cbdf6a058cdb39163928c70cbd2425eba6 (patch)
tree794835817103665381f58620e88765922a913e7d /ldso/ldso/cris/dl-startup.h
parentcbd4ed6c687b42b412a04d20ea77e1c90b68b3cf (diff)
Cosmetic changes.
Diffstat (limited to 'ldso/ldso/cris/dl-startup.h')
-rw-r--r--ldso/ldso/cris/dl-startup.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/ldso/ldso/cris/dl-startup.h b/ldso/ldso/cris/dl-startup.h
index 5fe5cae43..6824076fb 100644
--- a/ldso/ldso/cris/dl-startup.h
+++ b/ldso/ldso/cris/dl-startup.h
@@ -1,17 +1,17 @@
/*
- * This code fix the stack pointer so that the dunamic linker
+ * This code fix the stack pointer so that the dynamic linker
* can find argc, argv and auxvt (Auxillary Vector Table).
*/
-asm("\
- .text
- .globl _dl_boot
- .type _dl_boot,@function
-_dl_boot:
- move.d $sp,$r10
- move.d $pc,$r9
- add.d _dl_boot2 - ., $r9
- jsr $r9
-");
+asm("" \
+" .text\n" \
+" .globl _dl_boot\n" \
+" .type _dl_boot,@function\n" \
+"_dl_boot:\n" \
+" move.d $sp,$r10\n" \
+" move.d $pc,$r9\n" \
+" add.d _dl_boot2 - ., $r9\n" \
+" jsr $r9\n" \
+);
#define _dl_boot _dl_boot2
#define LD_BOOT(X) static void __attribute__ ((unused)) _dl_boot(X)