blob: 3776fa64bcbfa24fcff6162f4a88e06f03592b4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.section .init
.global _init
.type _init,%function
.align 2
_init:
stp x29,x30,[sp,-16]!
mov x29,sp
.section .fini
.global _fini
.type _fini,%function
.align 2
_fini:
stp x29,x30,[sp,-16]!
mov x29,sp
|