diff options
author | Dave Anglin <dave.anglin@nrc.ca> | 2006-03-20 01:12:30 +0000 |
---|---|---|
committer | Dave Anglin <dave.anglin@nrc.ca> | 2006-03-20 01:12:30 +0000 |
commit | a2199086d170f4265a1ff7400fc6373ed79a0d4e (patch) | |
tree | 7ffa1bd49cf912af31f4ce7489f00c1d9630eede /bfd | |
parent | e14430abf2fae52da803c410d7e83d7567d09229 (diff) | |
download | gdb-a2199086d170f4265a1ff7400fc6373ed79a0d4e.zip gdb-a2199086d170f4265a1ff7400fc6373ed79a0d4e.tar.gz gdb-a2199086d170f4265a1ff7400fc6373ed79a0d4e.tar.bz2 |
* elf64-hppa.c (elf64_hppa_special_sections): Change flags for .tbss
section from SHF_PARISC_WEAKORDER to SHF_HP_TLS.
(elf_backend_special_sections): Remove #undef.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf64-hppa.c | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 8a708ed..521fcb9 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2006-03-19 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + * elf64-hppa.c (elf64_hppa_special_sections): Change flags for .tbss + section from SHF_PARISC_WEAKORDER to SHF_HP_TLS. + (elf_backend_special_sections): Remove #undef. + 2006-03-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * elf64-hppa.c (allocate_global_data_opd): Don't create an OPD entry diff --git a/bfd/elf64-hppa.c b/bfd/elf64-hppa.c index 1ca551f..4e0b83c 100644 --- a/bfd/elf64-hppa.c +++ b/bfd/elf64-hppa.c @@ -2703,7 +2703,7 @@ static const struct bfd_elf_special_section elf64_hppa_special_sections[] = { ".dlt", 4, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_PARISC_SHORT }, { ".sdata", 6, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_PARISC_SHORT }, { ".sbss", 5, 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_PARISC_SHORT }, - { ".tbss", 5, 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_PARISC_WEAKORDER }, + { ".tbss", 5, 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_HP_TLS }, { NULL, 0, 0, 0, 0 } }; @@ -2814,7 +2814,5 @@ const struct elf_size_info hppa64_elf_size_info = #undef TARGET_BIG_NAME #define TARGET_BIG_NAME "elf64-hppa-linux" -#undef elf_backend_special_sections - #define INCLUDED_TARGET_FILE 1 #include "elf64-target.h" |