blob: 34d5b38e2b7a60a63e9ccb02187d388e88fc1985 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001.file "initfini.c"
2
3.section .init
4.global _init
5.type _init,%function
6 popl %ebx
7 popl %ebp
8 ret
9
10
11
12.section .fini
13.global _fini
14.type _fini,%function
15 popl %ebx
16 popl %ebp
17 ret
18
19
20
21.section .gnu.linkonce.t.__get_pc_thunk_bx,"ax",@progbits
22.global __get_pc_thunk_bx
23.hidden __get_pc_thunk_bx
24.type __get_pc_thunk_bx,%function
25__get_pc_thunk_bx:
26 movl (%esp), %ebx
27 ret