]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - lib/csu/arm/crti.S
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / lib / csu / arm / crti.S
1 #include <machine/asm.h>
2 __FBSDID("$FreeBSD$");
3
4         .section .init,"ax",%progbits
5         .align 4
6         .globl  _init
7         .type   _init,%function
8 _init:
9         mov     ip, sp
10         stmdb   sp!, {fp, ip, lr, pc}
11         sub     fp, ip, #4
12
13         .section .fini,"ax",%progbits
14         .align 4
15         .globl  _fini
16         .type   _fini,%function
17 _fini:
18         mov     ip, sp
19         stmdb   sp!, {fp, ip, lr, pc}
20         sub     fp, ip, #4
21