PR25277, microblaze opcode enumeration vs ISO/IEC TS 18661-3:2015
[deliverable/binutils-gdb.git] / ld / scripttempl / z8000.sc
index b03f5d85eef5789fe495807d762e1bb336eb1ef2..ab1898f804ac93dd3f8cdf37ebc58d5360e6fcb4 100644 (file)
@@ -1,18 +1,30 @@
+# Copyright (C) 2014-2019 Free Software Foundation, Inc.
+#
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved.
+
 cat <<EOF
+/* Copyright (C) 2014-2019 Free Software Foundation, Inc.
+
+   Copying and distribution of this script, with or without modification,
+   are permitted in any medium without royalty provided the copyright
+   notice and this notice are preserved.  */
+
 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
 OUTPUT_ARCH("${OUTPUT_ARCH}")
 ${RELOCATING+ENTRY (_start)}
 
-SECTIONS                               
-{                                      
+SECTIONS
+{
 .text ${BIG+ ${RELOCATING+ 0x0000000}} :
-       { 
-         *(.text)                              
+       {
+         *(.text)
          *(.strings)
          *(.rdata)
        }
 
-.ctors ${BIG+ ${RELOCATING+ 0x2000000}}  : 
+.ctors ${BIG+ ${RELOCATING+ 0x2000000}}  :
        {
          ${CONSTRUCTING+ ___ctors = . ;  }
          *(.ctors);
@@ -20,14 +32,14 @@ SECTIONS
          ___dtors = . ;
          *(.dtors);
          ${CONSTRUCTING+ ___dtors_end = . ; }
-       } 
+       }
 
 .data ${BIG+ ${RELOCATING+ 0x3000000}} :
        {
           *(.data)
        }
 
-.bss ${BIG+ ${RELOCATING+ 0x4000000}} : 
+.bss ${BIG+ ${RELOCATING+ 0x4000000}} :
        {
          ${RELOCATING+ __start_bss = . ; }
          *(.bss);
@@ -40,9 +52,9 @@ SECTIONS
          ${RELOCATING+ __start_heap = . ; }
          ${RELOCATING+ . = . + 20k  ; }
          ${RELOCATING+ __end_heap = . ; }
-       } 
+       }
 
-.stack ${RELOCATING+ 0xf000 }  : 
+.stack ${RELOCATING+ 0xf000 }  :
        {
          ${RELOCATING+ _stack = . ; }
          *(.stack)
This page took 0.042306 seconds and 4 git commands to generate.