consistency cleanup: removed redundant size suffixed from i386 asm
[musl] / crt / i386 / crt1.s
index 66ee11a..f5b4f4f 100644 (file)
@@ -3,20 +3,17 @@
 .text
 .global _start
 _start:
-       xorl %ebp,%ebp
-       popl %ecx
-       movl %esp,%eax
-       andl $-16,%esp
-       pushl %esp
-       pushl %esp
-       pushl %edx
-       call 1f
-1:     addl $[_fini-.],(%esp)
-       call 1f
-1:     addl $[_init-.],(%esp)
-       pushl %eax
-       pushl %ecx
-       call 1f
-1:     addl $[main-.],(%esp)
+       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