diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-20 19:07:19 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-20 19:07:19 -0500 |
commit | ba68efc921578438db5ab263edd2e9c4654bb412 (patch) | |
tree | aec72439e5b21b7e8260f52364550d2e54a329bf /crt | |
parent | 3075f7e847b0c717959054b86360722326dbde1e (diff) | |
download | musl-ba68efc921578438db5ab263edd2e9c4654bb412.tar.gz musl-ba68efc921578438db5ab263edd2e9c4654bb412.tar.xz musl-ba68efc921578438db5ab263edd2e9c4654bb412.zip |
shave off 2 bytes from crt1.o _start
Diffstat (limited to 'crt')
-rw-r--r-- | crt/i386/crt1.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crt/i386/crt1.s b/crt/i386/crt1.s index 050adec8..8702052a 100644 --- a/crt/i386/crt1.s +++ b/crt/i386/crt1.s @@ -8,8 +8,8 @@ _start: pushl %esp pushl %esp pushl %edx - pushl $0 - pushl $0 + pushl %ebp + pushl %ebp pushl %eax pushl %ecx pushl $main |