diff options
author | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-11 11:15:50 +0000 |
---|---|---|
committer | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-11 11:15:50 +0000 |
commit | 465b17a49d2b8272609a10bda2e8f0f3f6c38521 (patch) | |
tree | 3890c458e0c7d74140f908787e7dc6a9475fe916 /gcc/config/bfin/crti.s | |
parent | ef0891e1281d9f237a8af33d353eadaf598b568e (diff) | |
download | gcc-465b17a49d2b8272609a10bda2e8f0f3f6c38521.tar.gz |
* config/bfin/crti.s (__init, __fini): Renamed from _init, _fini.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105234 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/bfin/crti.s')
-rw-r--r-- | gcc/config/bfin/crti.s | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/config/bfin/crti.s b/gcc/config/bfin/crti.s index fc63eaee753..7324e27ff88 100644 --- a/gcc/config/bfin/crti.s +++ b/gcc/config/bfin/crti.s @@ -35,13 +35,13 @@ Boston, MA 02110-1301, USA. */ .ident "GNU C crti.o" .section .init - .globl _init - .type _init,@function -_init: + .globl __init + .type __init,@function +__init: LINK 0; .section .fini - .globl _fini - .type _fini,@function -_fini: + .globl __fini + .type __fini,@function +__fini: LINK 0; |