blob: d317451820b26eb6bcb06c32a6f822041f7ca9db (
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
|
.section .data
.hidden __dso_handle
.global __dso_handle
__dso_handle:
.long __dso_handle
.section .init
.hidden _init
.global _init
_init:
.section .fini
.hidden _fini
.global _fini
_fini:
.section .ctors
.hidden __CTOR_LIST__
.global __CTOR_LIST__
__CTOR_LIST__:
.section .dtors
.hidden __DTOR_LIST__
.global __DTOR_LIST__
__DTOR_LIST__:
.section .note.GNU-stack,"",%progbits
|