ld whitespace fixes
[deliverable/binutils-gdb.git] / ld / scripttempl / elfmicroblaze.sc
index e5574df3cc6a8543934e158d3267fef879aa700c..6be21fde5fe1fb4d626d40fc31c247e2fe2ddaf5 100644 (file)
@@ -1,7 +1,7 @@
 # Adapted from mips.sc
 #
 # Copyright (C) 2014-2017 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.
@@ -13,7 +13,7 @@ test -z "$ENTRY" && ENTRY=_start
 
 #test -z "$TEXT_START_ADDR" && TEXT_START_ADDR="0x0"
 
-CTOR=".ctors ${CONSTRUCTING-0} : 
+CTOR=".ctors ${CONSTRUCTING-0} :
   {
     ${CONSTRUCTING+${CTOR_START}}
     /* gcc uses crtbegin.o to find the start of
@@ -63,7 +63,7 @@ ${RELOCATING+${LIB_SEARCH_DIRS}}
 
 ${RELOCATING+ENTRY (${ENTRY})}
 
-_TEXT_START_ADDR = DEFINED(_TEXT_START_ADDR) ? _TEXT_START_ADDR : 0x50;                
+_TEXT_START_ADDR = DEFINED(_TEXT_START_ADDR) ? _TEXT_START_ADDR : 0x50;
 _HEAP_SIZE = DEFINED(_HEAP_SIZE) ? _HEAP_SIZE : 0x0;
 _STACK_SIZE = DEFINED(_STACK_SIZE) ? _STACK_SIZE : 0x400;
 
@@ -121,7 +121,7 @@ SECTIONS
   }
   ${RELOCATING+. = ALIGN(4);}
   .sbss2 : {
-    ${RELOCATING+PROVIDE (__sbss2_start = .);} 
+    ${RELOCATING+PROVIDE (__sbss2_start = .);}
     ${RELOCATING+*(.sbss2)}
     ${RELOCATING+*(.sbss2.*)}
     ${RELOCATING+*(.gnu.linkonce.sb2.*)}
@@ -140,30 +140,30 @@ SECTIONS
     ${CONSTRUCTING+CONSTRUCTORS}; /* Is this needed? */
   }
   ${RELOCATING+ _edata = . ;}
-  
+
    /* Added to handle pic code */
-  .got : {  
+  .got : {
     ${RELOCATING+*(.got)}
   }
 
-  .got1 : {  
+  .got1 : {
     ${RELOCATING+*(.got1)}
   }
 
-  .got2 : {  
+  .got2 : {
     ${RELOCATING+*(.got2)}
   }
 
   /* Added by Sathya to handle C++ exceptions */
-  .eh_frame : {  
+  .eh_frame : {
     ${RELOCATING+*(.eh_frame)}
   }
-  
-  .jcr : {  
+
+  .jcr : {
     ${RELOCATING+*(.jcr)}
   }
 
-  .gcc_except_table : {  
+  .gcc_except_table : {
     ${RELOCATING+*(.gcc_except_table)}
   }
 
@@ -178,7 +178,7 @@ SECTIONS
   }
   ${RELOCATING+. = ALIGN(4);}
   .sbss : {
-    ${RELOCATING+PROVIDE (__sbss_start = .);}  
+    ${RELOCATING+PROVIDE (__sbss_start = .);}
     ${RELOCATING+*(.sbss)}
     ${RELOCATING+*(.sbss.*)}
     ${RELOCATING+*(.gnu.linkonce.sb.*)}
@@ -192,13 +192,13 @@ SECTIONS
   ${RELOCATING+ . = ALIGN(4);}
   ${RELOCATING+ _fbss = .;}
   .bss : {
-    ${RELOCATING+PROVIDE (__bss_start = .);}   
+    ${RELOCATING+PROVIDE (__bss_start = .);}
     ${RELOCATING+*(.bss)}
     ${RELOCATING+*(.bss.*)}
     ${RELOCATING+*(.gnu.linkonce.b.*)}
     ${RELOCATING+*(COMMON)}
     ${RELOCATING+. = ALIGN(. != 0 ? 4 : 1);}
-    
+
     ${RELOCATING+PROVIDE (__bss_end = .);}
 
   }
@@ -210,7 +210,7 @@ SECTIONS
     ${RELOCATING+ _heap_start = .;}
     ${RELOCATING+ . += _HEAP_SIZE;}
     ${RELOCATING+ _heap_end = .;}
-  } 
+  }
 
   ${RELOCATING+ . = ALIGN(4);}
 
@@ -222,12 +222,12 @@ SECTIONS
     ${RELOCATING+ _end = .;}
   }
 
-  .tdata : {  
+  .tdata : {
     ${RELOCATING+*(.tdata)}
     ${RELOCATING+*(.tdata.*)}
     ${RELOCATING+*(.gnu.linkonce.td.*)}
   }
-  .tbss : {  
+  .tbss : {
     ${RELOCATING+*(.tbss)}
     ${RELOCATING+*(.tbss.*)}
     ${RELOCATING+*(.gnu.linkonce.tb.*)}
This page took 0.025576 seconds and 4 git commands to generate.