X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=crt%2Fi386%2Fcrt1.s;h=f5b4f4fd612ae3c5d50cbde5b925fb50e97865f3;hp=f520745c9c58b50940876ab5d033643e9f4a3957;hb=faab12bececc03ae0472db99504b0fefc0b8e059;hpb=83023d1b50297cd2aa0fe4cbd2a0539462bb7c48 diff --git a/crt/i386/crt1.s b/crt/i386/crt1.s index f520745c..f5b4f4fd 100644 --- a/crt/i386/crt1.s +++ b/crt/i386/crt1.s @@ -3,17 +3,17 @@ .text .global _start _start: - xorl %ebp,%ebp - popl %ecx - movl %esp,%eax - andl $-16,%esp - pushl %esp - pushl %esp - pushl %edx - pushl $_fini - pushl $_init - pushl %eax - pushl %ecx - pushl $main + xor %ebp,%ebp + pop %ecx + mov %esp,%eax + and $-16,%esp + push %esp + push %esp + push %edx + push $_fini + push $_init + push %eax + push %ecx + push $main call __libc_start_main 1: jmp 1b