Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2007-05-30 22:33:56 +0400
committerKazu Hirata <kazu@codesourcery.com>2007-05-30 22:33:56 +0400
commit3cde47d015d7b74f25d61b19f1a5bd498aa4f6ea (patch)
treee33a4254a25abd11d4e91d454e3c96efbb2e098b /libgloss/m68k/cf.sc
parentb206478328eb2cf2e8807b514dabb3069299a1e6 (diff)
* m68k/cf-crt1.C, m68k/cf.sc, m68k/fido.sc, m68k/fido-crt0.S:
Replace __INIT_SECTION__ and __FINI_SECTION__ with _init and _fini, respectively.
Diffstat (limited to 'libgloss/m68k/cf.sc')
-rw-r--r--libgloss/m68k/cf.sc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/m68k/cf.sc b/libgloss/m68k/cf.sc
index 5a3563af2..3c936d035 100644
--- a/libgloss/m68k/cf.sc
+++ b/libgloss/m68k/cf.sc
@@ -61,14 +61,14 @@ SECTIONS
*(.eh_frame)
. = ALIGN(0x4);
- __INIT_SECTION__ = . ;
+ _init = . ;
LONG (0x4e560000) /* linkw %fp,#0 */
*(.init)
SHORT (0x4e5e) /* unlk %fp */
SHORT (0x4e75) /* rts */
. = ALIGN(0x4);
- __FINI_SECTION__ = . ;
+ _fini = . ;
LONG (0x4e560000) /* linkw %fp,#0 */
*(.fini)
SHORT (0x4e5e) /* unlk %fp */