From a1ec4fae6d9b3280f661bb80127d90c0d53a7a99 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 5 Nov 2003 00:43:09 +0000 Subject: Continue the conversion to using per-arch crti.S and crtn.S --- libc/sysdeps/linux/arm/crti.S | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libc/sysdeps/linux/arm/crti.S (limited to 'libc/sysdeps/linux/arm/crti.S') diff --git a/libc/sysdeps/linux/arm/crti.S b/libc/sysdeps/linux/arm/crti.S new file mode 100644 index 000000000..0cacb1f10 --- /dev/null +++ b/libc/sysdeps/linux/arm/crti.S @@ -0,0 +1,26 @@ + .file "initfini.c" + + .section .init + .align 2 + .global _init + .type _init, %function +_init: + @ args = 0, pretend = 0, frame = 0 + @ frame_needed = 0, uses_anonymous_args = 0 + str lr, [sp, #-4]! + + .align 2 + + + .section .fini + .align 2 + .global _fini + .type _fini, %function +_fini: + @ args = 0, pretend = 0, frame = 0 + @ frame_needed = 0, uses_anonymous_args = 0 + str lr, [sp, #-4]! + .align 2 + + + .ident "GCC: (GNU) 3.3.2 20031005 (Debian prerelease)" -- cgit v1.2.3