yuezonghe | 824eb0c | 2024-06-27 02:32:26 -0700 | [diff] [blame^] | 1 | .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 |