aboutsummaryrefslogtreecommitdiff
path: root/ld/i960.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/i960.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/i960.sc-sh')
-rwxr-xr-xld/i960.sc-sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/i960.sc-sh b/ld/i960.sc-sh
index 0e24bb4..6d778a6 100755
--- a/ld/i960.sc-sh
+++ b/ld/i960.sc-sh
@@ -5,19 +5,19 @@ SECTIONS
{
${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
*(.text)
- ${RELOCATING+ _etext = .}
+ ${RELOCATING+ _etext = .};
}
.data :
{
*(.data)
- ${RELOCATING+ _edata = .}
+ ${RELOCATING+ _edata = .};
}
.bss :
{
- ${RELOCATING+ _bss_start = .}
+ ${RELOCATING+ _bss_start = .};
*(.bss)
*(COMMON)
- ${RELOCATING+ _end = .}
+ ${RELOCATING+ _end = .};
}
}
EOF