aboutsummaryrefslogtreecommitdiff
path: root/ld/a29k.sc-sh
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-03-02 22:22:59 +0000
committerSteve Chamberlain <sac@cygnus>1992-03-02 22:22:59 +0000
commit76971f0da2260c069b0ae13740627dba1b39487b (patch)
treeb2584c6a655cf348429122bec9c33f0f9383023d /ld/a29k.sc-sh
parent4ef09e3613ecc3849c0008102fc3871324caf7fd (diff)
downloadgdb-76971f0da2260c069b0ae13740627dba1b39487b.zip
gdb-76971f0da2260c069b0ae13740627dba1b39487b.tar.gz
gdb-76971f0da2260c069b0ae13740627dba1b39487b.tar.bz2
Modifed to care about semi colons again, newlines are ignored - sorry
Per.
Diffstat (limited to 'ld/a29k.sc-sh')
-rwxr-xr-xld/a29k.sc-sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/a29k.sc-sh b/ld/a29k.sc-sh
index e58af43..a43a5eb 100755
--- a/ld/a29k.sc-sh
+++ b/ld/a29k.sc-sh
@@ -14,7 +14,7 @@ SECTIONS
{
.text : {
*(.text)
- ${RELOCATING+ __etext = .}
+ ${RELOCATING+ __etext = .};
*(.lit)
*(.shdata)
} ${RELOCATING+ > text}
@@ -24,13 +24,13 @@ SECTIONS
.talias : { } ${RELOCATING+ > talias}
.data : {
*(.data)
- ${RELOCATING+ __edata = .}
+ ${RELOCATING+ __edata = .};
} ${RELOCATING+ > data}
.bss SIZEOF(.data) + ADDR(.data) :
{
*(.bss)
*(COMMON)
- ${RELOCATING+ __end = ALIGN(0x8)}
+ ${RELOCATING+ __end = ALIGN(0x8)};
}
.mstack : { } ${RELOCATING+ > mstack}
.rstack : { } ${RELOCATING+ > rstack}