diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-05 05:43:31 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-05 05:43:31 +0000 |
commit | 6d4e78b8aab1f4813439e77f1475dda6594d0b81 (patch) | |
tree | 2da721c127d8c2ae9be5a16e000fc78e1589d25f /libc/sysdeps/linux/sparc/crti.S | |
parent | 5cae04a3a276559f38fec14c0edfbbc3be77595e (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.S | 26 |
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" |