ubsan: s12z: left shift cannot be represented in type 'int'
[deliverable/binutils-gdb.git] / ld / scripttempl / tic30coff.sc
index df2d4f737cd351ae5f69b45a66cad64cafd9e84d..d10f21dd78355db5ce63076883ee142b78a359a7 100644 (file)
@@ -1,4 +1,16 @@
+# 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}")
 
@@ -10,49 +22,48 @@ MEMORY
        ramblk1 : ORIGIN = 0x02027000, LENGTH = 0x1000
 }
 
-SECTIONS                               
-{                                      
-.vectors 0x00000000 :
+SECTIONS
 {
-       *(vectors)
-}
+       .vectors 0x00000000 :
+       {
+               *(vectors)
+       }
 
-.text : 
-{
-       *(.text)
-} > rom
+       .text :
+       {
+               *(.text)
+       } > rom
 
-.const :
-{
-       *(.const)
-       __etext = . ;
-} > rom
+       .const :
+       {
+               *(.const)
+               __etext = . ;
+       } > rom
 
-.mdata : AT( ADDR(.const) + SIZEOF(.const) )
-{
-       __data = . ;
-       *(.data);
-       __edata = . ;
-} > ram
+       .mdata : AT( ADDR(.const) + SIZEOF(.const) )
+       {
+               __data = . ;
+               *(.data);
+               __edata = . ;
+       } > ram
 
-.bss :
-{
-       __bss = . ;
-       *(.bss);
-       *(COMMON);
-       __ebss = . ;
-} > ram
+       .bss :
+       {
+               __bss = . ;
+               *(.bss);
+               *(COMMON);
+               __ebss = . ;
+       } > ram
 
-.ram0 :
-{
-       *(ram0)
-} > ramblk0
-
-.ram1 :
-{
-       *(ram1)
-} > ramblk1
+       .ram0 :
+       {
+               *(ram0)
+       } > ramblk0
 
+       .ram1 :
+       {
+               *(ram1)
+       } > ramblk1
 }
 
 EOF
This page took 0.030583 seconds and 4 git commands to generate.