blob: 733f25b83ebfc401e381a5272cea2fbdac3e60d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
.file "initfini.c"
#APP
.section .init
#NO_APP
.globl _init
.type _init, @function
#NO_APP
popl %ebx
popl %ebp
ret
.size _init, .-_init
#APP
.section .fini
#NO_APP
.globl _fini
.type _fini, @function
#NO_APP
popl %ebx
popl %ebp
ret
.size _fini, .-_fini
#APP
.section .gnu.linkonce.t.__i686.get_pc_thunk.bx,"ax",@progbits
.globl __i686.get_pc_thunk.bx
.hidden __i686.get_pc_thunk.bx
.type __i686.get_pc_thunk.bx, @function
__i686.get_pc_thunk.bx:
movl (%esp), %ebx
ret
.ident "GCC: (GNU) 3.3.2 (Debian)"
|