From 30d1a3904f93edf8aa397958e74508db5ef584e0 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Thu, 18 Jun 1992 16:42:46 +0000 Subject: * h8300hms.em, h8300hms.sc-sh: do the right thing for -r * ldexp.c: lint * ldlang.c(open_output): set the target arch and machine as soon as we can. (lang_size_sections): use new macros for setting vma * ldwrite.c: lint --- ld/h8300hms.sc-sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ld/h8300hms.sc-sh') diff --git a/ld/h8300hms.sc-sh b/ld/h8300hms.sc-sh index 6eab5c2..ca19afb 100755 --- a/ld/h8300hms.sc-sh +++ b/ld/h8300hms.sc-sh @@ -16,23 +16,23 @@ SECTIONS { *(.text) *(.strings) - ${RELOCATING+_etext = .;} + _etext = .; } ${RELOCATING+ > ram} .data : { *(.data) - ${RELOCATING+_edata = .;} + _edata = .; } ${RELOCATING+ > ram} .bss : { - ${RELOCATING+ _bss_start = .;} + ${RELOCATING+ _bss_start = .}; *(.bss) *(COMMON) ${RELOCATING+ _end = .}; } ${RELOCATING+ >ram} .stack : { - ${RELOCATING+_stack = .;} + _stack = .; *(.stack) } ${RELOCATING+ > topram} } -- cgit v1.1