diff options
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/scripttempl/pep.sc | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 106161cc3c..792ca9ae12 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2008-04-03 Kai Tietz <kai.tietz@onevision.com> + + * scripttempl/pep.sc: Align start of symbol __CTOR_LIST__. + 2008-04-08 Alan Modra <amodra@bigpond.net.au> * po/POTFILES.in: Regenerate. diff --git a/ld/scripttempl/pep.sc b/ld/scripttempl/pep.sc index e571bd3509..e19026c9ef 100644 --- a/ld/scripttempl/pep.sc +++ b/ld/scripttempl/pep.sc @@ -71,6 +71,7 @@ SECTIONS ${R_TEXT} *(.glue_7t) *(.glue_7) + ${CONSTRUCTING+. = ALIGN(8);} ${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ; LONG (-1); LONG (-1);*(.ctors); *(.ctor); *(SORT(.ctors.*)); LONG (0); LONG (0); } ${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ; |