blob: 19125048729331dc034b485f864c549f36585229 (
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
|
.file "initfini.c"
.section .init
.global _init
.type _init,%function
popl %ebx
popl %ebp
ret
.size _init,.-_init
.section .fini
.global _fini
.type _fini,%function
popl %ebx
popl %ebp
ret
.size _fini,.-_fini
.section .gnu.linkonce.t.__get_pc_thunk_bx,"ax",@progbits
.global __get_pc_thunk_bx
.hidden __get_pc_thunk_bx
.type __get_pc_thunk_bx,%function
__get_pc_thunk_bx:
movl (%esp), %ebx
ret
|