diff options
author | Catherine Moore <clm@redhat.com> | 2001-09-12 14:09:18 +0000 |
---|---|---|
committer | Catherine Moore <clm@redhat.com> | 2001-09-12 14:09:18 +0000 |
commit | cedacdc05a9872309cd078e32ce6565266bc9065 (patch) | |
tree | 7656c61b292aece267dc9a3c2cc0aac704a8d0d5 | |
parent | 664cccaec568e4dfc989d7c3f31b26e7fc9e2d8c (diff) | |
download | binutils-cedacdc05a9872309cd078e32ce6565266bc9065.tar.gz binutils-cedacdc05a9872309cd078e32ce6565266bc9065.tar.bz2 binutils-cedacdc05a9872309cd078e32ce6565266bc9065.zip |
* scripttempl/v850.sc: Add gcc_except_table sections.
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/scripttempl/v850.sc | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 8cb200d5608..2abef7e7688 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2001-09-12 Andrew MacLeod <amacleod@redhat.com> + + * scripttempl/v850.sc: Add gcc_except_table sections. + Fri Sep 7 11:34:24 2001 Jeffrey A Law (law@cygnus.com) * emulparams/h8300helf.sh: Move stack to a much higher memory address. diff --git a/ld/scripttempl/v850.sc b/ld/scripttempl/v850.sc index 12042782b8d..8958321b2b9 100644 --- a/ld/scripttempl/v850.sc +++ b/ld/scripttempl/v850.sc @@ -42,6 +42,8 @@ SECTIONS .rela.data : { *(.rela.data) } .rel.rodata : { *(.rel.rodata) } .rela.rodata : { *(.rela.rodata) } + .rel.gcc_except_table : { *(.rel.gcc_except_table) } + .rela.gcc_except_table : { *(.rela.gcc_except_table) } .rel.got : { *(.rel.got) } .rela.got : { *(.rela.got) } .rel.ctors : { *(.rel.ctors) } @@ -120,6 +122,8 @@ SECTIONS KEEP (*(.jcr)) } + .gcc_except_table : { *(.gcc_except_table) } + .got : { *(.got.plt) *(.got) } .dynamic : { *(.dynamic) } |