This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Re-indent INIT_ARRAY


Hi,

I checked in this patch to re-indent INIT_ARRAY to match others.


H.J.
---
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/ld/ChangeLog,v
retrieving revision 1.2125
diff -u -p -r1.2125 ChangeLog
--- ChangeLog	18 Mar 2010 13:15:44 -0000	1.2125
+++ ChangeLog	18 Mar 2010 18:39:59 -0000
@@ -1,3 +1,7 @@
+2010-03-18  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* scripttempl/elf.sc (INIT_ARRAY): Re-indent.
+
 2010-03-18  Aymeric Vincent  <vincent@labri.fr>
 
 	PR ld/11384
Index: scripttempl/elf.sc
===================================================================
RCS file: /cvs/src/src/ld/scripttempl/elf.sc,v
retrieving revision 1.100
diff -u -p -r1.100 elf.sc
--- scripttempl/elf.sc	27 Feb 2010 12:34:25 -0000	1.100
+++ scripttempl/elf.sc	18 Mar 2010 18:39:59 -0000
@@ -218,10 +218,10 @@ test "${LARGE_SECTIONS}" = "yes" && LARG
   }"
 INIT_ARRAY=".init_array   ${RELOCATING-0} :
   {
-     ${RELOCATING+${CREATE_SHLIB-PROVIDE_HIDDEN (${USER_LABEL_PREFIX}__init_array_start = .);}}
-     KEEP (*(SORT(.init_array.*)))
-     KEEP (*(.init_array))
-     ${RELOCATING+${CREATE_SHLIB-PROVIDE_HIDDEN (${USER_LABEL_PREFIX}__init_array_end = .);}}
+    ${RELOCATING+${CREATE_SHLIB-PROVIDE_HIDDEN (${USER_LABEL_PREFIX}__init_array_start = .);}}
+    KEEP (*(SORT(.init_array.*)))
+    KEEP (*(.init_array))
+    ${RELOCATING+${CREATE_SHLIB-PROVIDE_HIDDEN (${USER_LABEL_PREFIX}__init_array_end = .);}}
   }"
 FINI_ARRAY=".fini_array   ${RELOCATING-0} :
   {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]