OSDN Git Service

* config/bfin/crti.s (__init, __fini): Renamed from _init, _fini.
authorbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Oct 2005 11:15:50 +0000 (11:15 +0000)
committerbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Oct 2005 11:15:50 +0000 (11:15 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105234 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/bfin/crti.s

index 6b1f9c5..e1b2fca 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-11  Bernd Schmidt  <bernd.schmidt@analog.com>
+
+       * config/bfin/crti.s (__init, __fini): Renamed from _init, _fini.
+
 2005-10-11  Jakub Jelinek  <jakub@redhat.com>
 
        * config/i386/i386.md (movsi_1, movdi_1_rex64): Use mmxadd type
index fc63eae..7324e27 100644 (file)
@@ -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;