aboutsummaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2007-07-24 14:47:44 +0000
committerNick Clifton <nickc@redhat.com>2007-07-24 14:47:44 +0000
commit9b9966104b89e9ff4db9a5da3a049b461d765a41 (patch)
tree8dc288e2133274534330397d32dc0b94eb89c891 /ld/scripttempl
parent69ae91d31143229dbadde41b7a9069d6216d545c (diff)
downloadfsf-binutils-gdb-9b9966104b89e9ff4db9a5da3a049b461d765a41.zip
fsf-binutils-gdb-9b9966104b89e9ff4db9a5da3a049b461d765a41.tar.gz
fsf-binutils-gdb-9b9966104b89e9ff4db9a5da3a049b461d765a41.tar.bz2
* pep.sc: Correct ctor/dtor sentinels for 64-bit targets.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/pep.sc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/scripttempl/pep.sc b/ld/scripttempl/pep.sc
index 7237832..b7f0c1b 100644
--- a/ld/scripttempl/pep.sc
+++ b/ld/scripttempl/pep.sc
@@ -64,9 +64,9 @@ SECTIONS
*(.glue_7t)
*(.glue_7)
${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
- LONG (-1);*(.ctors); *(.ctor); *(SORT(.ctors.*)); LONG (0); }
+ LONG (-1); LONG (-1);*(.ctors); *(.ctor); *(SORT(.ctors.*)); LONG (0); LONG (0); }
${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
- LONG (-1); *(.dtors); *(.dtor); *(SORT(.dtors.*)); LONG (0); }
+ LONG (-1); LONG (-1); *(.dtors); *(.dtor); *(SORT(.dtors.*)); LONG (0); LONG (0); }
${RELOCATING+ *(.fini)}
/* ??? Why is .gcc_exc here? */
${RELOCATING+ *(.gcc_exc)}