blob: b99748bcc7b9c8cba5748f707a1810c9736868bb (
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:
.quad __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
|