summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/powerpc/crt1.S
diff options
context:
space:
mode:
authorJoakim Tjernlund <joakim.tjernlund@transmode.se>2005-05-26 23:32:38 +0000
committerJoakim Tjernlund <joakim.tjernlund@transmode.se>2005-05-26 23:32:38 +0000
commit6fdbba5dfdbb311ff8e17bd4b8d9e0a46c231361 (patch)
tree7d357aa27dd36f62e3b2b8c5bd13b5a78a62725a /libc/sysdeps/linux/powerpc/crt1.S
parent651cfd37e24bcdf10d365f601d72c6353a1e3514 (diff)
Pass the aligned stack ptr, not the unaligned.
Diffstat (limited to 'libc/sysdeps/linux/powerpc/crt1.S')
-rw-r--r--libc/sysdeps/linux/powerpc/crt1.S8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/powerpc/crt1.S b/libc/sysdeps/linux/powerpc/crt1.S
index 004114b8d..6a3e0000b 100644
--- a/libc/sysdeps/linux/powerpc/crt1.S
+++ b/libc/sysdeps/linux/powerpc/crt1.S
@@ -42,9 +42,9 @@
.type __uClibc_start_main,%function
_start:
- mr r9,r1 /* Save the stack pointer */
+ mr r10,r1 /* Save the stack pointer */
clrrwi r1,r1,4 /* Align stack ptr to 16 bytes */
- mr r10,r1 /* Pass aligned stack ptr */
+ mr r9,r1 /* Pass aligned stack ptr */
#if defined L_Scrt1
bl _GLOBAL_OFFSET_TABLE_-4@local
mflr r31
@@ -55,9 +55,9 @@ _start:
mtlr r0
stw r0,0(r1)
/* find argc from the stack pointer */
- lwz r4,0(r9)
+ lwz r4,0(r10)
/* find argv one word offset from the stack pointer */
- addi r5,r9,4
+ addi r5,r10,4
mr r8,r7 /* Pass _dl_fini from ldso or NULL if statically linked */
/* Ok, now run uClibc's main() -- shouldn't return */
# ifdef L_Scrt1