repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
http: tiny-http-proxy: Fix bug
[lcapit-junk-code.git]
/
mcount
/
mcount-wrapper.S
blob
1ed63320181a3bbfffe5cdd63cf3e69a6d08eadd
1
/*
2
* linux/arch/i386/mcount-wrapper.S
3
*
4
* Copyright (C) 2004 Ingo Molnar
5
*/
6
7
.globl mcount
8
mcount:
9
push %ebp
10
mov %esp, %ebp
11
pushl %eax
12
pushl %ecx
13
pushl %edx
14
15
call __mcount
16
17
popl %edx
18
popl %ecx
19
popl %eax
20
popl %ebp
21
out:
22
ret