1.section .init
2.global _init
3.type _init,%function
4_init:
5	stp x29,x30,[sp,-16]!
6	mov x29,sp
7
8.section .fini
9.global _fini
10.type _fini,%function
11_fini:
12	stp x29,x30,[sp,-16]!
13	mov x29,sp
14