http: tiny-http-proxy: Fix bug
[lcapit-junk-code.git] / mcount / mcount-wrapper.S
blob1ed63320181a3bbfffe5cdd63cf3e69a6d08eadd
1 /*
2  *  linux/arch/i386/mcount-wrapper.S
3  *
4  *  Copyright (C) 2004 Ingo Molnar
5  */
7 .globl mcount
8 mcount:
9         push %ebp
10         mov %esp, %ebp
11         pushl %eax
12         pushl %ecx
13         pushl %edx
15         call __mcount
17         popl %edx
18         popl %ecx
19         popl %eax
20         popl %ebp
21 out:
22         ret