From: Dave Anglin Date: Wed, 1 Jan 2003 16:56:34 +0000 (+0000) Subject: * config/obj-elf.c (special_sections): Work around HP's incorrect usage X-Git-Tag: cagney-unwind-20030108-branchpoint~152 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db66b2925e95f52c845761a70db8b588fe5358f3;p=external%2Fbinutils.git * config/obj-elf.c (special_sections): Work around HP's incorrect usage of .init and .fini sections for array initializers and finalizers. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 833e3e0..346696b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2003-01-01 John David Anglin + + * config/obj-elf.c (special_sections): Work around HP's incorrect usage + of .init and .fini sections for array initializers and finalizers. + 2002-12-31 Chris Demetriou * config/tc-mips.c (validate_mips_insn, mips_ip): Recognize diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 6046a29..5dc4279 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -609,8 +609,13 @@ static struct special_section const special_sections[] = { ".data", SHT_PROGBITS, SHF_ALLOC + SHF_WRITE }, { ".data1", SHT_PROGBITS, SHF_ALLOC + SHF_WRITE }, { ".debug", SHT_PROGBITS, 0 }, +#if defined (TC_HPPA) && !defined (TE_LINUX) && TARGET_ARCH_SIZE == 64 + { ".fini", SHT_PROGBITS, SHF_ALLOC + SHF_WRITE }, + { ".init", SHT_PROGBITS, SHF_ALLOC + SHF_WRITE }, +#else { ".fini", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR }, { ".init", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR }, +#endif { ".line", SHT_PROGBITS, 0 }, { ".note", SHT_NOTE, 0 }, { ".rodata", SHT_PROGBITS, SHF_ALLOC },