-Wimplicit-fallthrough error fixes
[deliverable/binutils-gdb.git] / ld / scripttempl / h8500.sc
index f6e88c61dfcb048bdf3c056b02a8b76a0d72cef7..32ea094d49bb927a8d4ae39e47abf18c2cb8829c 100644 (file)
@@ -1,3 +1,9 @@
+# Copyright (C) 2014-2016 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.
+
 TORS="
     ___ctors = . ;
     *(.ctors)
@@ -7,32 +13,38 @@ TORS="
     ___dtors_end = . ;"
 
 cat <<EOF
+/* Copyright (C) 2014-2016 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(${ARCH})
 
 /* Code and data 64k total */
 
-SECTIONS                               
-{                                      
-.text ${RELOCATING+ 0x0000 } :
-       {                                       
+SECTIONS
+{
+.text ${RELOCATING+ 0x0000} :
+       {
          *(.text)
-         ${RELOCATING+ _etext = . ; }
+         ${RELOCATING+ _etext = . ; }
        }
 
 .data  ${RELOCATING+ . } :
        {
          *(.data)
          ${RELOCATING+ _edata = . ; }
-       } 
+       }
 
 .rdata  ${RELOCATING+ . } :
        {
-         *(.rdata); 
+         *(.rdata);
          *(.strings)
-         
+
          ${CONSTRUCTING+${TORS}}
-       } 
+       }
 
 .bss  ${RELOCATING+ . } :
        {
@@ -46,20 +58,16 @@ SECTIONS
        {
          ${RELOCATING+ _stack = . ; }
          *(.stack)
-       } 
+       }
 
-.stab  0 ${RELOCATING+(NOLOAD)} : 
+.stab  0 ${RELOCATING+(NOLOAD)} :
        {
          [ .stab ]
        }
-       
+
 .stabstr  0 ${RELOCATING+(NOLOAD)} :
        {
          [ .stabstr ]
        }
 }
 EOF
-
-
-
-
This page took 0.025804 seconds and 4 git commands to generate.