From e92bddcd1babd4fc5d4551602eab36c04f15e7c1 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Fri, 11 Sep 1992 20:43:33 +0000 Subject: [PATCH] Sanitize slip --- ld/.Sanitize | 6 +++++- ld/i386coff.sc-sh | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 ld/i386coff.sc-sh diff --git a/ld/.Sanitize b/ld/.Sanitize index ee6583d7ae0..b91e519c448 100644 --- a/ld/.Sanitize +++ b/ld/.Sanitize @@ -59,6 +59,7 @@ h8300xray.em h8300xray.sc-sh h8300xray.sh i386aout.sh +i386coff.sc-sh i386coff.sh i960.sc-sh ld.h @@ -126,7 +127,10 @@ echo Done in `pwd`. # # # $Log$ -# Revision 1.45 1992/09/11 17:47:22 sac +# Revision 1.46 1992/09/11 20:43:30 sac +# Sanitize slip +# +# Revision 1.45 1992/09/11 17:47:22 sac # Add i386coff.sh # # Revision 1.44 1992/09/09 18:59:04 ian diff --git a/ld/i386coff.sc-sh b/ld/i386coff.sc-sh new file mode 100644 index 00000000000..485f3bb8ed1 --- /dev/null +++ b/ld/i386coff.sc-sh @@ -0,0 +1,39 @@ +# This is totally made up, from the a29k stuff. If you know better, +# tell us about it. +cat < text} + .shbss SIZEOF(.text) + ADDR(.text) : { + *(.shbss) + } + .talias : { } ${RELOCATING+ > talias} + .data : { + *(.data) + ${RELOCATING+ _edata = .}; + } ${RELOCATING+ > data} + .bss SIZEOF(.data) + ADDR(.data) : + { + *(.bss) + *(COMMON) + ${RELOCATING+ _end = ALIGN(0x8)}; + } + .mstack : { } ${RELOCATING+ > mstack} + .rstack : { } ${RELOCATING+ > rstack} +} +EOF -- 2.30.2