make ldso asm more uniform with rest of codebase (no unnecessary suffixes)

This commit is contained in:
Rich Felker
2011-06-19 22:42:10 -04:00
parent 779165e6d4
commit d19adeec52

View File

@ -1,19 +1,19 @@
.text .text
.global _start .global _start
_start: _start:
xorl %ebp,%ebp xor %ebp,%ebp
popl %ecx pop %ecx
movl %esp,%eax mov %esp,%eax
andl $-16,%esp and $-16,%esp
movl %eax,%esi mov %eax,%esi
movl %ecx,%edi mov %ecx,%edi
pushl %ebp push %ebp
call 1f call 1f
1: addl $_GLOBAL_OFFSET_TABLE_,(%esp) 1: addl $_GLOBAL_OFFSET_TABLE_,(%esp)
pushl %eax push %eax
pushl %ecx push %ecx
call __dynlink call __dynlink
movl %esi,%esp mov %esi,%esp
pushl %edi push %edi
xorl %edx,%edx xor %edx,%edx
jmp *%eax jmp *%eax