diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-03-18 18:40:29 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-03-18 18:40:29 +0000 |
commit | 576ee33af3eb7e4db87587ac57d91ea3b585896a (patch) | |
tree | dea2d44e9839de98902a92424747b6572602bbef /ld | |
parent | e8d054800a5127a3c8924d745a81d1ecfeef6e30 (diff) | |
download | gdb-576ee33af3eb7e4db87587ac57d91ea3b585896a.zip gdb-576ee33af3eb7e4db87587ac57d91ea3b585896a.tar.gz gdb-576ee33af3eb7e4db87587ac57d91ea3b585896a.tar.bz2 |
Re-indent INIT_ARRAY.
2010-03-18 H.J. Lu <hongjiu.lu@intel.com>
* scripttempl/elf.sc (INIT_ARRAY): Re-indent.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/scripttempl/elf.sc | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 5c1fcf0..2849c5a 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -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 diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index 0f4a4d7..56deb2e 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -218,10 +218,10 @@ test "${LARGE_SECTIONS}" = "yes" && LARGE_SECTIONS=" }" 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} : { |