blob: 2bf6254dce9fb677f3f0808f4892051ee270dbda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.hidden __mlibc_do_ctors
.hidden __mlibc_do_dtors
.section .init
b __mlibc_do_ctors
.section .fini
b __mlibc_do_dtors
.section .ctors
.hidden __CTOR_END__
.global __CTOR_END__
__CTOR_END__:
.section .dtors
.hidden __DTOR_END__
.global __DTOR_END__
__DTOR_END__:
.section .note.GNU-stack,"",%progbits
|