diff options
author | Rob Landley <rob@landley.net> | 2007-03-29 17:18:09 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-03-29 17:18:09 +0000 |
commit | 7a40ba19c86e4d2fc7e35f14a0e629ee843b96a9 (patch) | |
tree | 7168872d63a93ae49c43cb9af84baad6543f4284 /libc/sysdeps/linux/powerpc | |
parent | 9d2445fb8581b375b903e537f60fe0278ddc2e82 (diff) |
Revert last change until we figure out the correct fix.
Diffstat (limited to 'libc/sysdeps/linux/powerpc')
-rw-r--r-- | libc/sysdeps/linux/powerpc/crt1.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/powerpc/crt1.S b/libc/sysdeps/linux/powerpc/crt1.S index ad46b5434..8798849b3 100644 --- a/libc/sysdeps/linux/powerpc/crt1.S +++ b/libc/sysdeps/linux/powerpc/crt1.S @@ -74,7 +74,7 @@ _start: lwz r4,0(r9) /* find argv one word offset from the stack pointer */ addi r5,r9,4 - mr r7,r3 /* Pass _dl_fini from ldso or NULL if statically linked + mr r8,r3 /* Pass _dl_fini from ldso or NULL if statically linked Note: using r3 instead of r7, since linux 2.6 clobbers r7 */ /* Ok, now run uClibc's main() -- shouldn't return */ #ifdef __PIC__ |