From 388d8904711324aeccbfb9ef25851b15905f3736 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 26 Jan 1993 19:51:41 +0000 Subject: [PATCH] Correct syntax errors which only appeared when relocating. --- ld/mips.sc-sh | 6 +++--- 1 file 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 -- 2.7.4