* scripttempl/v850.sc (.zdata): Add this before .text.
authorJeff Law <law@redhat.com>
Thu, 17 Oct 1996 20:48:42 +0000 (20:48 +0000)
committerJeff Law <law@redhat.com>
Thu, 17 Oct 1996 20:48:42 +0000 (20:48 +0000)
        (.sdata): Also include .rosdata as part of the .sdata.
        (.tdata): Include this just before .sdata.

ld/ChangeLog
ld/scripttempl/v850.sc

index 2b4f757f27b1d8d8f017d263817c9032e35c4371..039106afa6ed835cadd0c206a5ffda7daa974dd5 100644 (file)
@@ -7,6 +7,10 @@ end-sanitize-m32r
 start-sanitize-v850
 Thu Oct 17 10:56:49 1996  Jeffrey A Law  (law@cygnus.com)
 
+       * scripttempl/v850.sc (.zdata): Add this before .text.
+       (.sdata): Also include .rosdata as part of the .sdata.
+       (.tdata): Include this just before .sdata.
+
        * emulparms/v850.sh (SCRIPT_NAME): Use "v850" not "elf".
        * scripttempl/v850.sc: Wrap script with a "cat << EOF".
 
index e0c427f70433e4d0b126e00a8338b5eea2bec774..e4cb42618b1b7469f51778473828aa9f7dab9e8d 100644 (file)
@@ -35,6 +35,7 @@ SECTIONS
   .rela.plt      : { *(.rela.plt)              }
   .init          : { *(.init)  } =0
   .plt      : { *(.plt)        }
+  .zdata    : { *(.zdata) *(.zrodata) *(.zbss*) }
   .text      :
   {
     *(.text)
@@ -71,10 +72,11 @@ SECTIONS
   }
   .got           : { *(.got.plt) *(.got) }
   .dynamic       : { *(.dynamic) }
+  .tdata     : { *(.tdata) }
   /* We want the small data sections together, so single-instruction offsets
      can access them all, and initialized data all before uninitialized, so
      we can shorten the on-disk segment size.  */
-  .sdata     : { *(.sdata) }
+  .sdata     : { *(.rosdata) *(.sdata) }
   _edata  =  .;
   PROVIDE (edata = .);
   __bss_start = .;
This page took 0.0426 seconds and 4 git commands to generate.