summaryrefslogtreecommitdiff
path: root/sysdeps/mips/elf
diff options
context:
space:
mode:
authorGreg McGary <greg@mcgary.org>2000-06-07 00:30:05 +0000
committerGreg McGary <greg@mcgary.org>2000-06-07 00:30:05 +0000
commitd5bc737a32bc409066a717cf517bfebe3daa6013 (patch)
tree48c1f6b775198a2caf353b1d8ea1d821a0201987 /sysdeps/mips/elf
parent4c3192f900bb7de34a64049e2ed2deddb9aba05d (diff)
* sysdeps/mips/elf/start.S: Trim redundant code.
* sysdeps/mips/elf/start.S: Trim redundant code.
Diffstat (limited to 'sysdeps/mips/elf')
-rw-r--r--sysdeps/mips/elf/start.S13
1 files changed, 2 insertions, 11 deletions
diff --git a/sysdeps/mips/elf/start.S b/sysdeps/mips/elf/start.S
index 064fe7e6f4..f2df8a5676 100644
--- a/sysdeps/mips/elf/start.S
+++ b/sysdeps/mips/elf/start.S
@@ -73,16 +73,8 @@ ENTRY_POINT:
move $31, $0
#if (__mips64)
- dla $4, main /* main */
- lw $5, 0($29) /* argc */
- addu $6, $29, 4 /* argv */
- /* Allocate space on the stack for seven arguments and make sure
- the stack is aligned to double words (8 bytes). */
- and $29, 0xfffffff8
- subu $29, 32
- dla $7, _init /* init */
- dla $8, _fini
-#else
+# define la dla
+#endif
la $4, main /* main */
lw $5, 0($29) /* argc */
addu $6, $29, 4 /* argv */
@@ -92,7 +84,6 @@ ENTRY_POINT:
subu $29, 32
la $7, _init /* init */
la $8, _fini
-#endif
sw $8, 16($29) /* fini */
sw $2, 20($29) /* rtld_fini */
sw $29, 24($29) /* stack_end */