* sysdeps/mips/elf/start.S: Trim redundant code.

* sysdeps/mips/elf/start.S: Trim redundant code.
This commit is contained in:
Greg McGary 2000-06-07 00:30:05 +00:00
parent 4c3192f900
commit d5bc737a32
2 changed files with 4 additions and 11 deletions

View File

@ -1,5 +1,7 @@
2000-06-06 Greg McGary <greg@mcgary.org>
* sysdeps/mips/elf/start.S: Trim redundant code.
* sysdeps/powerpc/memset.S: Define & use symbolic register names.
Use C comments throughout. Line up operands column with tabs.
* sysdeps/powerpc/strchr.S: Likewise.

View File

@ -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 */