aboutsummaryrefslogtreecommitdiff
path: root/bfd/ChangeLog
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2010-12-02 13:28:35 +0000
committerRichard Sandiford <rdsandiford@googlemail.com>2010-12-02 13:28:35 +0000
commit362d30a1c8f666bac634c7b7a41d326e2bc94822 (patch)
treecd77902a7724c0e7bf20fb443f8ba54c798f6c4e /bfd/ChangeLog
parent0bdcacaf7125cb15ba9903c21bd29d38bd269d3d (diff)
downloadgdb-362d30a1c8f666bac634c7b7a41d326e2bc94822.zip
gdb-362d30a1c8f666bac634c7b7a41d326e2bc94822.tar.gz
gdb-362d30a1c8f666bac634c7b7a41d326e2bc94822.tar.bz2
bfd/
* elf32-arm.c (elf32_arm_link_hash_table): Remove sgot, sgotplt, srelgot, splt, srelplt. (create_got_section, elf32_arm_link_hash_table_create): Don't set them. (elf32_arm_create_dynamic_sections): Likewise. Use htab->root fields instead. (arm_type_of_stub): Use the root fields instead of the removed ones. (cortex_a8_erratum_scan, elf32_arm_size_stubs): Likewise. (bfd_elf32_arm_process_before_allocation): Likewise. (elf32_arm_check_relocs, allocate_dynrelocs): Likewise. (elf32_arm_size_dynamic_sections): Likewise. (elf32_arm_output_arch_local_syms): Likewise. (elf32_arm_final_link_relocate): Set sgot, splt and srelgot from the htab fields instead of looking them up by name. Consistently use these local variables instead of htab fields. (elf32_arm_finish_dynamic_symbol): Likewise sgot, splt and srel. Use srelbss instead of looking it up by name. (elf32_arm_finish_dynamic_sections): Use sgotplt, splt and srelplt instead of looking up the symbols by name. Use the root fields instead of the removed ones.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r--bfd/ChangeLog22
1 files changed, 22 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 5604a3d..20df60a 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,27 @@
2010-12-02 Richard Sandiford <richard.sandiford@linaro.org>
+ * elf32-arm.c (elf32_arm_link_hash_table): Remove sgot, sgotplt,
+ srelgot, splt, srelplt.
+ (create_got_section, elf32_arm_link_hash_table_create): Don't set them.
+ (elf32_arm_create_dynamic_sections): Likewise. Use htab->root
+ fields instead.
+ (arm_type_of_stub): Use the root fields instead of the removed ones.
+ (cortex_a8_erratum_scan, elf32_arm_size_stubs): Likewise.
+ (bfd_elf32_arm_process_before_allocation): Likewise.
+ (elf32_arm_check_relocs, allocate_dynrelocs): Likewise.
+ (elf32_arm_size_dynamic_sections): Likewise.
+ (elf32_arm_output_arch_local_syms): Likewise.
+ (elf32_arm_final_link_relocate): Set sgot, splt and srelgot from the
+ htab fields instead of looking them up by name. Consistently use
+ these local variables instead of htab fields.
+ (elf32_arm_finish_dynamic_symbol): Likewise sgot, splt and srel.
+ Use srelbss instead of looking it up by name.
+ (elf32_arm_finish_dynamic_sections): Use sgotplt, splt and srelplt
+ instead of looking up the symbols by name. Use the root fields
+ instead of the removed ones.
+
+2010-12-02 Richard Sandiford <richard.sandiford@linaro.org>
+
* elf32-arm.c (elf32_arm_relocs_copied): Delete.
(elf32_arm_link_hash_entry): Replace relocs_copied with dyn_relocs.
(elf32_arm_link_hash_newfunc): Update accordingly.