summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/sparc/crti.S
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-11-05 05:43:31 +0000
committerEric Andersen <andersen@codepoet.org>2003-11-05 05:43:31 +0000
commit6d4e78b8aab1f4813439e77f1475dda6594d0b81 (patch)
tree2da721c127d8c2ae9be5a16e000fc78e1589d25f /libc/sysdeps/linux/sparc/crti.S
parent5cae04a3a276559f38fec14c0edfbbc3be77595e (diff)
Continue the conversion to using per-arch crti.S and crtn.S
Diffstat (limited to 'libc/sysdeps/linux/sparc/crti.S')
-rw-r--r--libc/sysdeps/linux/sparc/crti.S26
1 files changed, 26 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sparc/crti.S b/libc/sysdeps/linux/sparc/crti.S
new file mode 100644
index 000000000..9dff14858
--- /dev/null
+++ b/libc/sysdeps/linux/sparc/crti.S
@@ -0,0 +1,26 @@
+ .file "initfini.c"
+
+ .section .init
+ .align 4
+ .global _init
+ .type _init, #function
+ .proc 020
+_init:
+ !#PROLOGUE# 0
+ save %sp, -104, %sp
+
+ .align 4
+
+
+ .section .fini
+ .align 4
+ .global _fini
+ .type _fini, #function
+ .proc 020
+_fini:
+ !#PROLOGUE# 0
+ save %sp, -104, %sp
+ .align 4
+
+
+ .ident "GCC: (GNU) 3.3.2"