aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1992-10-20 17:57:28 +0000
committerIan Lance Taylor <ian@airs.com>1992-10-20 17:57:28 +0000
commit668f26b5fe5f22b2cc2219d844b036861ea0e534 (patch)
treee64f6de2da862fdb5be11261ae60a62e70913a67 /ld
parent2675499b51db7c174b1cd5db19769cd96c3d6b33 (diff)
downloadfsf-binutils-gdb-668f26b5fe5f22b2cc2219d844b036861ea0e534.zip
fsf-binutils-gdb-668f26b5fe5f22b2cc2219d844b036861ea0e534.tar.gz
fsf-binutils-gdb-668f26b5fe5f22b2cc2219d844b036861ea0e534.tar.bz2
Tue Oct 20 10:56:06 1992 Ian Lance Taylor (ian@cygnus.com)
* m68kcoff.sc-sh: don't use initial underscores for etext, edata and end.
Diffstat (limited to 'ld')
-rw-r--r--ld/m68kcoff.sc-sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/m68kcoff.sc-sh b/ld/m68kcoff.sc-sh
index 393688f..6770254 100644
--- a/ld/m68kcoff.sc-sh
+++ b/ld/m68kcoff.sc-sh
@@ -15,7 +15,7 @@ SECTIONS
{
.text : {
*(.text)
- ${RELOCATING+ _etext = .};
+ ${RELOCATING+ etext = .};
*(.lit)
*(.shdata)
} ${RELOCATING+ > text}
@@ -25,14 +25,14 @@ SECTIONS
.talias : { } ${RELOCATING+ > talias}
.data : {
*(.data)
- ${RELOCATING+ _edata = .};
+ ${RELOCATING+ edata = .};
} ${RELOCATING+ > data}
.bss SIZEOF(.data) + ADDR(.data) :
{
${RELOCATING+ __bss_start = .};
*(.bss)
*(COMMON)
- ${RELOCATING+ _end = ALIGN(0x8)};
+ ${RELOCATING+ end = ALIGN(0x8)};
}
.mstack : { } ${RELOCATING+ > mstack}
.rstack : { } ${RELOCATING+ > rstack}