freebsd-dev/lib/csu/arm/crtn.S
Dimitry Andric cbbcfbf8b7 Let all .c and .S files under lib/csu consistently use the __FBSDID()
macro for identification, instead of several different hand-rolled
variants (plain .ident, .ascii, etc).
2010-12-09 21:31:21 +00:00

11 lines
184 B
ArmAsm

#include <machine/asm.h>
__FBSDID("$FreeBSD$");
.section .init,"ax",%progbits
ldmea fp, {fp, sp, pc}
mov pc, lr
.section .fini,"ax",%progbits
ldmea fp, {fp, sp, pc}
mov pc, lr