]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/csu/mips/crtn.S
Remove spurious newline
[FreeBSD/FreeBSD.git] / lib / csu / mips / crtn.S
1 #include <machine/asm.h>
2 __FBSDID("$FreeBSD$");
3
4 #ifndef __clang__
5         .gnu_attribute 4, 0
6 #endif
7         .section .init,"ax",%progbits
8         .set noreorder
9 #if defined(__ABICALLS__) && (defined(__mips_n32) || defined(__mips_n64))
10         REG_L   gp, CALLFRAME_GP(sp)
11 #endif
12         REG_L   ra, CALLFRAME_RA(sp)
13         jr      ra
14         PTR_ADDU sp, sp, CALLFRAME_SIZ
15         .set reorder
16
17         .section .fini,"ax",%progbits
18         .set noreorder
19 #if defined(__ABICALLS__) && (defined(__mips_n32) || defined(__mips_n64))
20         REG_L   gp, CALLFRAME_GP(sp)
21 #endif
22         REG_L   ra, CALLFRAME_RA(sp)
23         jr      ra
24         PTR_ADDU sp, sp, CALLFRAME_SIZ
25         .set reorder