diff options
| author | Rich Felker <dalias@aerifal.cx> | 2011-06-19 22:42:10 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2011-06-19 22:42:10 -0400 | 
| commit | d19adeec52ee2e5f9524d306576cfd6bfc4a031a (patch) | |
| tree | 18262762aa9d04159ad67d557b85aa73da854a23 /src | |
| parent | 779165e6d42cfb3d19859e4eaa0da6807b24ad20 (diff) | |
| download | musl-d19adeec52ee2e5f9524d306576cfd6bfc4a031a.tar.gz | |
make ldso asm more uniform with rest of codebase (no unnecessary suffixes)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ldso/i386/start.s | 24 | 
1 files changed, 12 insertions, 12 deletions
diff --git a/src/ldso/i386/start.s b/src/ldso/i386/start.s index 47c2748b..8e6a777d 100644 --- a/src/ldso/i386/start.s +++ b/src/ldso/i386/start.s @@ -1,19 +1,19 @@  .text  .global _start  _start: -	xorl %ebp,%ebp -	popl %ecx -	movl %esp,%eax -	andl $-16,%esp -	movl %eax,%esi -	movl %ecx,%edi -	pushl %ebp +	xor %ebp,%ebp +	pop %ecx +	mov %esp,%eax +	and $-16,%esp +	mov %eax,%esi +	mov %ecx,%edi +	push %ebp  	call 1f  1:	addl $_GLOBAL_OFFSET_TABLE_,(%esp) -	pushl %eax -	pushl %ecx +	push %eax +	push %ecx  	call __dynlink -	movl %esi,%esp -	pushl %edi -	xorl %edx,%edx +	mov %esi,%esp +	push %edi +	xor %edx,%edx  	jmp *%eax  | 
