diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-19 10:07:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-19 10:07:41 +0000 |
commit | d7643439eba4ded2253cc4c0c5b2531ee82bd4ea (patch) | |
tree | 87538475452f3b3ee086fd704ef70e97e6a35585 /libc/sysdeps/linux/sh/crti.S | |
parent | 3358b761b15daa480ca0ca788b3fe077ac967674 (diff) |
Work from Stefan Allius which allows superH to use the common
method for building crti.o and crtn.o
Diffstat (limited to 'libc/sysdeps/linux/sh/crti.S')
-rw-r--r-- | libc/sysdeps/linux/sh/crti.S | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/libc/sysdeps/linux/sh/crti.S b/libc/sysdeps/linux/sh/crti.S deleted file mode 100644 index f79b6d2cf..000000000 --- a/libc/sysdeps/linux/sh/crti.S +++ /dev/null @@ -1,22 +0,0 @@ - .file "crti.S" - - .section .init - .align 2 - .global _init - .hidden _init - .type _init,@function -_init: - mov.l r14,@-r15 - sts.l pr,@-r15 - mov r15,r14 - - .section .fini - .align 2 - .global _fini - .hidden _fini - .type _fini,@function -_fini: - mov.l r14,@-r15 - sts.l pr,@-r15 - mov r15,r14 - |