aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1993-01-26 19:51:41 +0000
committerIan Lance Taylor <ian@airs.com>1993-01-26 19:51:41 +0000
commit388d8904711324aeccbfb9ef25851b15905f3736 (patch)
treec953d9d3def4af7d38d4601b84de3afc731a1a2c /ld
parentc3fe0c418cbf57de45977c58ed13ee141c377541 (diff)
downloadgdb-388d8904711324aeccbfb9ef25851b15905f3736.zip
gdb-388d8904711324aeccbfb9ef25851b15905f3736.tar.gz
gdb-388d8904711324aeccbfb9ef25851b15905f3736.tar.bz2
Correct syntax errors which only appeared when relocating.
Diffstat (limited to 'ld')
-rw-r--r--ld/mips.sc-sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/mips.sc-sh b/ld/mips.sc-sh
index 3e3ba75..5d492e1 100644
--- a/ld/mips.sc-sh
+++ b/ld/mips.sc-sh
@@ -22,7 +22,7 @@ SECTIONS
.data ${RELOCATING+ .} : {
*(.data)
}
- ${RELOCATING+ _gp = . + 0x8000};
+ ${RELOCATING+ _gp = . + 0x8000;}
.lit8 ${RELOCATING+ .} : {
*(.lit8)
}
@@ -32,7 +32,7 @@ SECTIONS
.sdata ${RELOCATING+ .} : {
*(.sdata)
}
- ${RELOCATING+ edata = .};
+ ${RELOCATING+ edata = .;}
.sbss ${RELOCATING+ .} : {
*(.sbss)
}
@@ -40,6 +40,6 @@ SECTIONS
*(.bss)
*(COMMON)
}
- ${RELOCATING+ end = .};
+ ${RELOCATING+ end = .;}
}
EOF