Add elf_x86_64_relocs_compatible.
[deliverable/binutils-gdb.git] / bfd / ChangeLog
index 7722ff8fecaf3677562ec2923dd1fe872af5aafd..fc4e5a39a7b1012cd763a934e842c5d01f92e079 100644 (file)
@@ -1,3 +1,611 @@
+2010-12-30  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elf64-x86-64.c (elf_x86_64_relocs_compatible): New.
+       (elf_backend_relocs_compatible): Defined to
+       elf_x86_64_relocs_compatible.
+
+2010-12-30  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * archures.c (bfd_mach_x64_32): New.
+       (bfd_mach_x64_32_intel_syntax): Likewise.
+       * bfd-in2.h: Regenerated.
+
+       * config.bfd (targ64_selvecs): Add bfd_elf32_x86_64_vec for
+       i[3-7]86-*-linux-*.
+       (targ_selvecs): Add bfd_elf32_x86_64_vec for x86_64-*-linux-*.
+
+       * configure.in: Support bfd_elf32_x86_64_vec.
+       * configure: Regenerated.
+
+       * cpu-i386.c (bfd_x64_32_arch_intel_syntax): New.
+       (bfd_x64_32_arch): Likewise.
+
+       * elf-bfd.h (elf_append_rela): New prototype.
+       (elf_append_rel): Likewise.
+       (elf64_r_info): Likewise.
+       (elf32_r_info): Likewise.
+       (elf64_r_sym): Likewise.
+       (elf32_r_sym): Likewise.
+
+       * elf64-x86-64.c (ABI_64_P): New.
+       (elf_x86_64_info_to_howto): Replace ELF64_R_TYPE with
+       ELF32_R_TYPE.  Replace ELF64_ST_TYPE with ELF_ST_TYPE.
+       (elf_x86_64_check_tls_transition):Likewise.
+       (elf_x86_64_check_relocs): Likewise.
+       (elf_x86_64_gc_mark_hook):Likewise.
+       (elf_x86_64_gc_sweep_hook): Likewise.
+       (elf_x86_64_relocate_section): Likewise.
+       (elf_x86_64_reloc_type_class): Likewise.
+       (ELF_DYNAMIC_INTERPRETER): Renamed to ...
+       (ELF64_DYNAMIC_INTERPRETER): This.
+       (ELF32_DYNAMIC_INTERPRETER): New.
+       (elf_x86_64_link_hash_table): Add r_info, r_sym, swap_reloca_out,
+       dynamic_interpreter and dynamic_interpreter_size.
+       (elf_x86_64_get_local_sym_hash): Replace ELF64_R_SYM with
+       htab->r_sym.  Replace ELF64_R_INFO with htab->r_info.
+       (elf_x86_64_get_local_sym_hash): Likewise.
+       (elf_x86_64_check_tls_transition):Likewise.
+       (elf_x86_64_check_relocs): Likewise.
+       (elf_x86_64_gc_mark_hook):Likewise.
+       (elf_x86_64_gc_sweep_hook): Likewise.
+       (elf_x86_64_relocate_section): Likewise.
+       (elf_x86_64_finish_dynamic_symbol): Likewise.
+       (elf_x86_64_finish_local_dynamic_symbol): Likewise.
+       (elf_x86_64_link_hash_table_create): Initialize r_info, r_sym,
+       swap_reloca_out, dynamic_interpreter and dynamic_interpreter_size.
+       (elf_x86_64_check_relocs): Check ABI_64_P when requesting for
+       PIC.
+       (elf_x86_64_relocate_section): Likewise.
+       (elf64_x86_64_adjust_dynamic_symbol): Replace sizeof
+       (Elf64_External_Rela) with bed->s->sizeof_rela.
+       (elf64_x86_64_allocate_dynrelocs): Likewise.
+       (elf64_x86_64_size_dynamic_sections): Likewise.
+       (elf64_x86_64_finish_dynamic_symbol): Likewise.
+       (elf64_x86_64_append_rela): Removed.
+       (elf32_x86_64_elf_object_p): New.
+       Add bfd_elf32_x86_64_vec.
+
+       * elf64-x86-64.c (elf64_x86_64_xxx): Renamed to ...
+       (elf_x86_64_xxx): This.
+
+       * elflink.c (bfd_elf_final_link): Check ELF file class on error.
+       (elf_append_rela): New.
+       (elf_append_rel): Likewise.
+       (elf64_r_info): Likewise.
+       (elf32_r_info): Likewise.
+       (elf64_r_sym): Likewise.
+       (elf32_r_sym): Likewise.
+
+       * targets.c (bfd_elf32_x86_64_vec): New.
+       (_bfd_target_vector): Add bfd_elf32_x86_64_vec.
+
+2010-12-24  Alan Modra  <amodra@gmail.com>
+
+       * compress.c (decompress_contents): Style.
+       (bfd_get_full_section_contents): Do not decompress directly into
+       caller buffer or directly return cached section contents.
+       Check malloc return for compressed_buffer.
+
+2010-12-21  Kai Tietz  <kai.tietz@onevision.com>
+
+       * peXXigen.c (_bfd_XXi_final_link_postscript): Use
+       bfd_get_symbol_leading_char to determine "_tls_used" name.
+
+2010-12-21  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * peXXigen.c (_bfd_XXi_final_link_postscript): Use correct size
+       for windows 64-bit TLS table size.
+
+2010-12-16  DJ Delorie  <dj@redhat.com>
+
+       * reloc.c (BFD_RELOC_RX_ABS16_REV): Add.
+       (BFD_RELOC_RX_ABS32_REV): Add.
+       * bfd-in2.h: Regenerate.
+       * libbfd.h: Regenerate.
+       * elf32-rx.c (rx_reloc_map): Add them.
+
+2010-12-15  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elf.c (_bfd_elf_new_section_hook): Special handling for
+       .init_array/.fini_array output sections.
+
+2010-12-13  Alan Modra  <amodra@gmail.com>
+
+       * aoutx.h (aout_link_check_ar_symbols): Formatting.
+       * cofflink.c (coff_link_check_ar_symbols): Likewise.
+       * elflink.c (elf_link_add_archive_symbols): Likewise.
+       * pdp11.c (aout_link_check_ar_symbols): Likewise.
+       * xcofflink.c (xcoff_link_check_dynamic_ar_symbols,
+       xcoff_link_check_dynamic_ar_symbols): Likewise.
+
+       * aoutx.h (aout_link_check_archive_element): Simplify code dealing
+       with add_archive_element substitute BFD.
+       * cofflink.c (coff_link_check_archive_element): Likewise.
+       * ecoff.c (ecoff_link_check_archive_element): Likewise.
+       (ecoff_link_add_archive_symbols): Likewise.
+       * linker.c (generic_link_check_archive_element): Likewise.
+       * pdp11.c (aout_link_check_archive_element): Likewise.
+       * vms-alpha.c (alpha_vms_link_add_archive_symbols): Likewise.
+       * xcofflink.c (xcoff_link_check_archive_element): Likewise.
+
+       * aoutx.h (aout_link_check_archive_element): Free symbols from old
+       bfd if !keep_memory.
+       * cofflink.c (coff_link_check_archive_element): Likewise.
+       * pdp11.c (aout_link_check_archive_element): Likewise.
+       * xcofflink.c (xcoff_link_check_archive_element): Likewise.
+
+2010-12-13  Alan Modra  <amodra@gmail.com>
+
+       * plugin.c (bfd_plugin_mkobject): Delete.
+       (plugin_vec): Use bfd_false instead.
+
+2010-12-12  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elflink.c (elf_link_add_archive_symbols): Remove subsbfd.
+
+2010-12-12  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elf.c (special_sections_g): Add ".gnu.lto_".
+
+2010-12-10  Alan Modra  <amodra@gmail.com>
+
+       * config.bfd: Configure rs6000-*-aix* as for powerpc-*-aix*.
+       Add aix5coff64_vec to powerpc ELF entries.
+
+2010-12-09  Mike Frysinger  <vapier@gentoo.org>
+
+       * .gitignore: New file.
+
+2010-12-06  Dmitry Gorbachev  <d.g.gorbachev@gmail.com>
+
+       PR ld/12288
+       * plugin.c (message): Add putchar for the trailing `\n'.
+
+2010-12-04  Mike Frysinger  <vapier@gentoo.org>
+
+       * Makefile.am (!INSTALL_LIBBFD/bfdinclude_HEADERS): Set to nothing.
+       (PLUGINS/bfdinclude_HEADERS): Append plugin-api.h.
+       * Makefile.in: Regenerated.
+
+2010-12-04  Alan Modra  <amodra@gmail.com>
+
+       PR ld/12277
+       * elflink.c (elf_link_output_extsym): Set bfd_error on symbol
+       and section errors.  Allow better translation of error messages.
+
+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.
+       (elf32_arm_copy_indirect_symbol, elf32_arm_gc_sweep_hook): Likewise.
+       (elf32_arm_check_relocs, allocate_dynrelocs): Likewise.
+       (elf32_arm_readonly_dynrelocs): Likewise.
+       (elf32_arm_size_dynamic_sections): Likewise.
+
+2010-12-02  Paul Koning  <ni1d@arrl.net>
+
+       * pdp11.c (aout_link_add_symbols): Ignore debug symbols.
+
+2010-11-30  Joel Sherrill  <joel.sherrill@oarcorp.com>
+
+       * config.bfd: Add sparc64-rtems.
+
+2010-11-25  Alan Modra  <amodra@gmail.com>
+
+       * po/es.po: Update.
+       * po/fi.po: Update.
+       * po/fr.po: Update.
+       * po/ja.po: Update.
+       * po/zh_CN.po: Update.
+
+2010-11-24  Joel Brobecker  <brobecker@adacore.com>
+
+       * Makefile.am (OPTIONAL_BACKENDS): Add rs6000-core.lo.
+       (OPTIONAL_BACKENDS_CFILES): Add rs6000-core.c.
+       * Makefile.in: Regenerate.
+
+2010-11-24  Alan Modra  <amodra@gmail.com>
+
+       PR ld/12253
+       * elf-eh-frame.c (_bfd_elf_write_section_eh_frame): Correct
+       DW_EH_PE_datarel handling.  Truncate .eh_frame_hdr address to
+       ptr_size.
+
+2010-11-23  Mingming Sun  <mingm.sun@gmail.com>
+
+       * elfxx-mips.c (mips_set_isa_flags): Move bfd_mach_loongson_3a
+       after bfd_mach_mips_sb1.
+
+2010-11-17  Tristan Gingold  <gingold@adacore.com>
+
+       * vms-lib.c (vms_write_index): Add comments.
+       Partially revert previous patch.  Free blocks later.
+
+2010-11-17  Nick Clifton  <nickc@redhat.com>
+
+       PR ld/12161
+       * elf32-avr.c (elf32_avr_check_relocs): Delete.
+       (elf_backend_check_relocs): Delete.
+
+2010-11-16  Jie Zhang  <jie.zhang@analog.com>
+
+       * elf32-bfin.c (elf32_bfin_code_in_l1): New variable.
+       (elf32_bfin_data_in_l1): New variable.
+       (elf32_bfin_final_write_processing): New.
+       (elf_backend_final_write_processing): Define.
+
+2010-11-15  Mike Frysinger  <vapier@gentoo.org>
+
+       PR binutils/12177
+       * elf32-bfin.c (_bfin_create_got_section): Drop unused flags code.
+
+2010-11-12  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * archive.c (_bfd_get_elt_at_filepos): Copy BFD_COMPRESS and
+       BFD_DECOMPRESS.
+       (bfd_openr_next_archived_file): Revert the last change.
+
+2010-11-11  Mingming Sun  <mingm.sun@gmail.com>
+
+       * archures.c (bfd_mach_mips_loongson_3a): Defined.
+       * bfd-in2.h (bfd_mach_mips_loongson_3a): Defined.
+       * cpu-mips.c (I_loongson_3a): New add.
+       (arch_info_struct): Add loongson_3a.
+       * elfxx-mips.c (_bfd_elf_mips_mach): Add loongson_3a.
+       (mips_set_isa_flags): Add loongson_3a.
+       (mips_mach_extensions): Add loongson_3a in MIPS64 extensions.
+
+2010-11-10  Richard Sandiford  <richard.sandiford@linaro.org>
+
+       * elf32-arm.c (elf32_arm_merge_eabi_attributes): Remove unused
+       variables.
+
+2010-11-10  Nick Clifton  <nickc@redhat.com>
+
+       * po/ja.po: Updated Japanese translation.
+       * po/ru.po: Updated Russian translation.
+
+2010-11-08  Nick Clifton  <nickc@redhat.com>
+
+       * po/ja.po: Updated Japanese translation.
+
+2010-11-08  Alan Modra  <amodra@gmail.com>
+
+       * hash.c (bfd_hash_hash): Extract from..
+       (bfd_hash_lookup): ..here.
+       (bfd_hash_rename): New function.
+       * section.c (bfd_rename_section): New function.
+       * bfd-in.h (bfd_hash_rename): Declare.
+       * bfd-in2.h: Regenerate.
+       * elf.c (_bfd_elf_make_section_from_shdr): Rename input sections
+       when compressing or decompressing.  Don't assert name match.
+       * elf64-hppa.c (get_reloc_section): Don't assert name match.
+       * elfxx-ia64.c (get_reloc_section): Likewise.
+
+2010-11-05  Joseph Myers  <joseph@codesourcery.com>
+
+       * elf32-tic6x.c (elf32_tic6x_obj_attrs_handle_unknown): New.
+       (elf32_tic6x_merge_attributes): Use
+       _bfd_elf_merge_unknown_attribute_low and
+       _bfd_elf_merge_unknown_attribute_list.
+       (elf_backend_obj_attrs_handle_unknown): Define.
+
+2010-11-05  Joseph Myers  <joseph@codesourcery.com>
+
+       * elf-attrs.c (_bfd_elf_merge_unknown_attribute_low,
+       _bfd_elf_merge_unknown_attribute_list): Correct test for matching
+       string attributes.
+
+2010-11-05  Tristan Gingold  <gingold@adacore.com>
+
+       * po/bfd.pot: Regenerate
+
+2010-11-05  Tristan Gingold  <gingold@adacore.com>
+
+       * configure.in: Bump version to 2.21.51
+       * configure: Regenerate.
+
+2010-11-04  Maciej W. Rozycki  <macro@codesourcery.com>
+
+       PR ld/10144
+       * elfxx-mips.c (_bfd_mips_elf_check_relocs)
+       [R_MIPS_32, R_MIPS_REL32, R_MIPS_64]: Ignore relocs from
+       SEC_DEBUGGING sections.
+
+2010-11-04  Tristan Gingold  <gingold@adacore.com>
+
+       * vms-lib.c (vms_write_index): Fix thinko: reverse the loop.
+       Use bfd_zmalloc instead of bfd_malloc.  Fix comment.
+
+2010-11-04  Kai Tietz  <kai.tietz@onevision.com>
+
+       * coffcode.h (GNU_LINKONCE_WT): New.
+       (sec_to_styp_flags): Add handling of new debug
+       section.
+       (styp_to_sec_flags): Likewise.
+
+2010-11-04  Tristan Gingold  <gingold@adacore.com>
+
+       * makefile.vms (CFLAGS): Make badalias warnings informational.
+       * vms-lib.c (vms_lib_bread): Avoid arithmetic on void pointer.
+
+2010-11-04  Joseph Myers  <joseph@codesourcery.com>
+
+       * elf-attrs.c (_bfd_elf_merge_unknown_attribute_low,
+       _bfd_elf_merge_unknown_attribute_list): New.
+       * elf-bfd.h (struct elf_backend_data): Add
+       obj_attrs_handle_unknown.
+       (_bfd_elf_merge_unknown_attribute_low,
+       _bfd_elf_merge_unknown_attribute_list): Declare.
+       * elf32-arm.c (elf32_arm_obj_attrs_handle_unknown): New.  Split
+       out from elf32_arm_merge_eabi_attributes.
+       (elf32_arm_merge_eabi_attributes): Use
+       _bfd_elf_merge_unknown_attribute_low and
+       _bfd_elf_merge_unknown_attribute_list.
+       (elf_backend_obj_attrs_handle_unknown): Define.
+       * elfxx-target.h (elf_backend_obj_attrs_handle_unknown): Define.
+       (elfNN_bed): Update initializer.
+
+2010-11-02  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * bfd.c (BFD_FLAGS_FOR_BFD_USE_MASK): New.
+       * bfd-in2.h: Regenerated.
+
+2010-11-02  Joseph Myers  <joseph@codesourcery.com>
+
+       * elf32-tic6x.c (elf32_tic6x_obj_attrs_arg_type): Except for
+       Tag_ABI_compatibility, treat odd tags as strings and even ones as
+       integers.
+       (elf32_tic6x_obj_attrs_order, elf32_tic6x_tag_to_array_alignment,
+       elf32_tic6x_array_alignment_to_tag): New.
+       (elf32_tic6x_merge_attributes): Handle more attributes.  Set type
+       for merged attributes.
+       (elf_backend_obj_attrs_order): Define.
+
+2010-10-29  Maciej W. Rozycki  <macro@codesourcery.com>
+
+       * elfxx-mips.c (mips_elf_calculate_relocation): Fix a typo.
+
+2010-10-29  Pawel Sikora  <pluto@pld-linux.org>
+
+       PR binutils/12075
+       * compress.c (bfd_compress_section_contents): Use uLong on
+       compressed_size.
+
+2010-10-29  Joseph Myers  <joseph@codesourcery.com>
+
+       * elf32-tic6x.c (elf32_tic6x_obj_attrs_arg_type): Check
+       Tag_ABI_compatibility not Tag_compatibility.
+       (elf32_tic6x_merge_attributes): Update compatibility attribute
+       name in comment.  Return FALSE if merging common attributes fails.
+
+2010-10-29  Nick Clifton  <nickc@redhat.com>
+
+       PR bintils/6962
+       * coffcode.h (handle_COMDAT): Only check the base type when
+       looking for a section symbol.
+
+2010-10-29  H.J. Lu  <hongjiu.lu@intel.com>
+           Cary Coutant  <ccoutant@google.com>
+
+       * archive.c (bfd_openr_next_archived_file): Copy BFD_COMPRESS
+       and BFD_DECOMPRESS.
+
+       * bfd.c (BFD_COMPRESS): New.
+       (BFD_DECOMPRESS): Likewise.
+       (BFD_FLAGS_SAVED): Likewise.
+       (bfd_preserve_save): Replace BFD_IN_MEMORY with BFD_FLAGS_SAVED.
+
+       * compress.c (bfd_uncompress_section_contents): Removed.
+       (get_uncompressed_size): New.
+       (decompress_contents): Likewise.
+       (bfd_compress_section_contents): Likewise.
+       (bfd_get_full_section_contents): Likewise.
+       (bfd_is_section_compressed): Likewise.
+       (bfd_init_section_decompress_status): Likewise.
+       (bfd_init_section_compress_status): Likewise.
+
+       * dwarf2.c (dwarf_debug_sections): New.
+       (dwarf_debug_section_enum): Likewise.
+       (read_section): Remove section_name and compressed_section_name.
+       Add dwarf_debug_section_enum.  Try compressed debug section.
+       (read_indirect_string): Updated.
+       (read_abbrevs): Likewise.
+       (decode_line_info): Likewise.
+       (read_debug_ranges): Likewise.
+       (find_line): Updated.
+
+       * ecoff.c (bfd_debug_section): Add compress_status and
+       compressed_size.
+
+       * elf.c (_bfd_elf_make_section_from_shdr): Call
+       bfd_is_section_compressed to check if a DWARF debug section is
+       compressed.  Call bfd_init_section_compress_status or
+       bfd_init_section_decompress_status if needed.
+
+       * elflink.c (elf_link_input_bfd): Replace bfd_get_section_contents
+       with bfd_get_full_section_contents.
+       * merge.c (_bfd_add_merge_section): Likewise.
+       * reloc.c (bfd_generic_get_relocated_section_contents): Likewise.
+       * simple.c (bfd_simple_get_relocated_section_contents): Likewise.
+
+       * elfxx-target.h (TARGET_BIG_SYM): Allow BFD_COMPRESS and
+       BFD_DECOMPRESS.
+       (TARGET_LITTLE_SYM): Likewise.
+
+       * libbfd-in.h (dwarf_debug_section): New.
+       (dwarf_debug_sections): Likewise.
+
+       * libbfd.c (_bfd_generic_get_section_contents): Issue an error
+       when getting contents on compressed/decompressed section.
+
+       * section.c (COMPRESS_SECTION_NONE): New.
+       (COMPRESS_SECTION_DONE): Likewise.
+       (DECOMPRESS_SECTION_SIZED): Likewise.
+       (BFD_FAKE_SECTION): Add compress_status and compressed_size.
+       (bfd_malloc_and_get_section): Replace bfd_get_section_contents
+       with bfd_get_full_section_contents.
+
+       * bfd-in2.h: Regenerated.
+       * libbfd.h: Likewise.
+
+2010-10-29  Bernd Schmidt  <bernds@codesourcery.com>
+           Joseph Myers  <joseph@codesourcery.com>
+
+       * elf32-tic6x.c (elf32_tic6x_merge_attributes): Check for mismatch
+       of DSBT attributes.
+
+2010-10-25  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * elf-bfd.h (RELOC_AGAINST_DISCARDED_SECTION): Always call
+       _bfd_clear_contents.  Pass it the input section.
+       * libbfd-in.h (_bfd_clear_contents): Add input_section argument.
+       * libbfd.h: Regenerate.
+       * reloc.c (_bfd_clear_contents): Take input_section argument.
+       Use non-zero for .debug_ranges.
+       (bfd_generic_get_relocated_section_conten): Update _bfd_clear_contents
+       call.
+
+       * elf32-arm.c (elf32_arm_relocate_section): Use
+       RELOC_AGAINST_DISCARDED_SECTION.
+       * elf-m10200.c (mn10200_elf_relocate_section): Likewise.
+       * elf-m10300.c (mn10300_elf_relocate_section): Likewise.
+       * elf32-arm.c (elf32_arm_relocate_section): Likewise.
+       * elf32-avr.c (elf32_avr_relocate_section): Likewise.
+       * elf32-bfin.c (bfin_relocate_section): Likewise.
+       (bfinfdpic_relocate_section): Likewise.
+       * elf32-cr16.c (elf32_cr16_relocate_section): Likewise.
+       * elf32-cr16c.c (elf32_cr16c_relocate_section): Likewise.
+       * elf32-cris.c (cris_elf_relocate_section): Likewise.
+       * elf32-crx.c (elf32_crx_relocate_section): Likewise.
+       * elf32-d10v.c (elf32_d10v_relocate_section): Likewise.
+       * elf32-fr30.c (fr30_elf_relocate_section): Likewise.
+       * elf32-frv.c (elf32_frv_relocate_section): Likewise.
+       * elf32-h8300.c (elf32_h8_relocate_section): Likewise.
+       * elf32-hppa.c (elf32_hppa_relocate_section): Likewise.
+       * elf32-i370.c (i370_elf_relocate_section): Likewise.
+       * elf32-i860.c (elf32_i860_relocate_section): Likewise.
+       * elf32-ip2k.c (ip2k_elf_relocate_section): Likewise.
+       * elf32-iq2000.c (iq2000_elf_relocate_section): Likewise.
+       * elf32-lm32.c (lm32_elf_relocate_section): Likewise.
+       * elf32-m32c.c (m32c_elf_relocate_section): Likewise.
+       * elf32-m32r.c (m32r_elf_relocate_section): Likewise.
+       * elf32-m68hc1x.c (elf32_m68hc11_relocate_section): Likewise.
+       * elf32-m68k.c (elf_m68k_relocate_section): Likewise.
+       * elf32-mcore.c (mcore_elf_relocate_section): Likewise.
+       * elf32-mep.c (mep_elf_relocate_section): Likewise.
+       * elf32-moxie.c (moxie_elf_relocate_section): Likewise.
+       * elf32-msp430.c (elf32_msp430_relocate_section): Likewise.
+       * elf32-mt.c (mt_elf_relocate_section): Likewise.
+       * elf32-openrisc.c (openrisc_elf_relocate_section): Likewise.
+       * elf32-ppc.c (ppc_elf_relocate_section): Likewise.
+       * elf32-rx.c (rx_elf_relocate_section): Likewise.
+       * elf32-s390.c (elf_s390_relocate_section): Likewise.
+       * elf32-score.c (s3_bfd_score_elf_relocate_section): Likewise.
+       * elf32-score7.c (s7_bfd_score_elf_relocate_section): Likewise.
+       * elf32-sh.c (sh_elf_relocate_section): Likewise.
+       * elf32-spu.c (spu_elf_relocate_section): Likewise.
+       * elf32-tic6x.c (elf32_tic6x_relocate_section): Likewise.
+       * elf32-v850.c (v850_elf_relocate_section): Likewise.
+       * elf32-vax.c (elf_vax_relocate_section): Likewise.
+       * elf32-xc16x.c (elf32_xc16x_relocate_section): Likewise.
+       * elf32-xstormy16.c (xstormy16_elf_relocate_section): Likewise.
+       * elf32-xtensa.c (elf_xtensa_relocate_section): Likewise.
+       * elf64-alpha.c (elf64_alpha_relocate_section_r): Likewise.
+       (elf64_alpha_relocate_section): Likewise.
+       * elf64-hppa.c (elf64_hppa_relocate_section): Likewise.
+       * elf64-mmix.c (mmix_elf_relocate_section): Likewise.
+       * elf64-ppc.c (ppc64_elf_relocate_section): Likewise.
+       * elf64-s390.c (elf_s390_relocate_section): Likewise.
+       * elf64-sh64.c (sh_elf64_relocate_section): Likewise.
+       * elfxx-ia64.c (elfNN_ia64_relocate_section): Likewise.
+       * elfxx-mips.c (_bfd_mips_elf_relocate_section): Likewise.
+       * elfxx-sparc.c (_bfd_sparc_elf_relocate_section): Likewise.
+
+2010-10-25  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * elf32-tic6x.c: Add attribution.
+
+2010-10-25  Alan Modra  <amodra@gmail.com>
+
+       * elf32-arm.c (find_stub_size_and_template): Avoid uninitialized
+       var warning at -O3.
+
+2010-10-25  Alan Modra  <amodra@gmail.com>
+
+       * opncls.c (bfd_alloc, bfd_zalloc): Don't mark internal.
+       * libbfd-in.h (bfd_alloc, bfd_zalloc): Don't declare here.
+       * libbfd.h: Regenerate
+       * bfd-in2.h: Regenerate.
+
+2010-10-25  Alan Modra  <amodra@gmail.com>
+
+       * opncls.c (_bfd_id_counter): Rename to bfd_id_counter.
+       (bfd_reserved_id_counter, bfd_use_reserved_id): New vars.
+       (_bfd_new_bfd): Use negative id when bfd_use_reserved_id.
+       (bfd_create): Doc fix.
+       * bfd-in2.h: Regenerate.
+
+2010-10-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * elfxx-sparc.c (tpoff): Define bed, static_tls_size.
+       Consider static_tls_alignment.
+
+       * elf32-sparc.c (TARGET_BIG_SYM): Redefine to
+       bfd_elf32_sparc_sol2_vec.
+       (TARGET_BIG_NAME): Redefine to elf32-sparc-sol2.
+       (elf32_bed): Redefine to elf32_sparc_sol2_bed.
+       (elf_backend_static_tls_alignment): Redefine to 8.
+       Include elf32-target.h.
+       (elf_backend_static_tls_alignment): Undef again for VxWorks.
+
+       * elf64-sparc.c (TARGET_BIG_SYM): Redefine to
+       bfd_elf64_sparc_sol2_vec.
+       (TARGET_BIG_NAME): Redefine to elf64-sparc-sol2.
+       (ELF_OSABI): Undef.
+       (elf64_bed): Redefine to elf64_sparc_sol2_bed.
+       (elf_backend_static_tls_alignment): Redefine to 16.
+       Include elf64-target.h.
+
+       * config.bfd (sparc-*-solaris2.[0-6]): Split from sparc-*-elf*.
+       Set targ_defvec to bfd_elf32_sparc_sol2_vec.
+       [BFD64] (sparc-*-solaris2*): Set targ_defvec to
+       bfd_elf32_sparc_sol2_vec.
+       Replace bfd_elf64_sparc_vec by bfd_elf64_sparc_sol2_vec in
+       targ_selvecs.
+
+       * configure.in: Handle bfd_elf32_sparc_sol2_vec,
+       bfd_elf64_sparc_sol2_vec.
+       * configure: Regenerate.
+
+       * targets.c (bfd_elf32_sparc_sol2_vec): Declare.
+       (bfd_elf64_sparc_sol2_vec): Declare.
+       (_bfd_target_vector): Add bfd_elf32_sparc_sol2_vec,
+       bfd_elf64_sparc_sol2_vec.
+
 2010-10-21  Joseph Myers  <joseph@codesourcery.com>
 
        * elf32-tic6x.c (elf32_tic6x_merge_arch_attributes): Update for
        (elf_backend_static_tls_alignment): Redefine for Solaris 2.
        Undef again for Intel L1OM.
 
-2010-10-14  Dave Korn  <dave.korn.cygwin@gmail.com> 
+2010-10-14  Dave Korn  <dave.korn.cygwin@gmail.com>
 
        Apply LD plugin patch series (part 6/6).
        * aoutx.h (aout_link_check_ar_symbols): Take new "subsbfd" reference
        Delete.
        (elf32_tic6x_rel_relocation_p): Adjusted to match changes in
        data structures.
-       * elf32-microblaze.c (microblaze_elf_check_relocs): Use
+       * elf32-microblaze.c (microblaze_elf_check_relocs): Use
        _bfd_elf_single_rel_hdr.
        * elf32-ppc.c (ppc_elf_relax_section): Likewise.
        * elf32-spu.c (spu_elf_relocate_section): Likewise.
This page took 0.029366 seconds and 4 git commands to generate.